MediaWiki REL1_34
DBAccessBase.php
Go to the documentation of this file.
1<?php
2
6
34abstract class DBAccessBase implements IDBAccessObject {
36 private $lb;
37
39 protected $dbDomain = false;
40
44 public function __construct( $dbDomain = false ) {
45 $this->dbDomain = $dbDomain;
46 $this->lb = MediaWikiServices::getInstance()->getDBLoadBalancerFactory()
47 ->getMainLB( $dbDomain );
48 }
49
62 protected function getConnection( $id, array $groups = [] ) {
63 return $this->getLoadBalancer()->getConnectionRef( $id, $groups, $this->dbDomain );
64 }
65
76 protected function releaseConnection( IDatabase $db ) {
77 // no-op
78 }
79
89 protected function getLoadBalancer() {
90 return $this->lb;
91 }
92}
getLoadBalancer()
Get the database type used for read operations.
__construct( $dbDomain=false)
string bool $dbDomain
The target wiki's DB domain.
getConnection( $id, array $groups=[])
Returns a database connection.
ILoadBalancer $lb
releaseConnection(IDatabase $db)
Releases a database connection and makes it available for recycling.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Interface for database access objects.
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
Database cluster connection, tracking, load balancing, and transaction manager interface.