MediaWiki  1.29.2
BatchRowWriter.php
Go to the documentation of this file.
1 <?php
25 
30  protected $db;
31 
35  protected $table;
36 
40  protected $clusterName;
41 
47  public function __construct( IDatabase $db, $table, $clusterName = false ) {
48  $this->db = $db;
49  $this->table = $table;
50  $this->clusterName = $clusterName;
51  }
52 
59  public function write( array $updates ) {
60  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
61  $ticket = $lbFactory->getEmptyTransactionTicket( __METHOD__ );
62 
63  foreach ( $updates as $update ) {
64  $this->db->update(
65  $this->table,
66  $update['changes'],
67  $update['primaryKey'],
68  __METHOD__
69  );
70  }
71 
72  $lbFactory->commitAndWaitForReplication( __METHOD__, $ticket );
73  }
74 }
BatchRowWriter\$table
$table
Definition: BatchRowWriter.php:35
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$lbFactory
$lbFactory
Definition: doMaintenance.php:117
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:40
BatchRowWriter\write
write(array $updates)
Definition: BatchRowWriter.php:59
table
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
Definition: deferred.txt:11
BatchRowWriter\__construct
__construct(IDatabase $db, $table, $clusterName=false)
Definition: BatchRowWriter.php:47
BatchRowWriter
Definition: BatchRowWriter.php:26
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
BatchRowWriter\$db
$db
Definition: BatchRowWriter.php:30
array
the array() calling protocol came about after MediaWiki 1.4rc1.
BatchRowWriter\$clusterName
$clusterName
Definition: BatchRowWriter.php:40