MediaWiki REL1_34
|
Database connection manager. More...
Public Member Functions | |
__construct (ILoadBalancer $loadBalancer, $domain=false, array $groups=[]) | |
getReadConnection (array $groups=null) | |
Returns a database connection for reading. | |
getReadConnectionRef (array $groups=null) | |
Returns a database connection ref for reading. | |
getWriteConnection () | |
Returns a connection to the master DB, for updating. | |
getWriteConnectionRef () | |
Returns a connection ref to the master DB, for updating. | |
releaseConnection (IDatabase $db) | |
Private Member Functions | |
getConnection ( $i, array $groups=null) | |
getConnectionRef ( $i, array $groups=null) | |
Private Attributes | |
string false | $domain |
The symbolic name of the target database, or false for the local wiki's database. | |
string[] | $groups = [] |
ILoadBalancer | $loadBalancer |
Database connection manager.
This manages access to master and replica databases.
Definition at line 35 of file ConnectionManager.php.
Wikimedia\Rdbms\ConnectionManager::__construct | ( | ILoadBalancer | $loadBalancer, |
$domain = false , |
|||
array | $groups = [] |
||
) |
ILoadBalancer | $loadBalancer | |
string | bool | $domain | Optional logical DB name, defaults to current wiki. This follows the convention for database names used by $loadBalancer. |
string[] | $groups | see LoadBalancer::getConnection |
InvalidArgumentException |
Definition at line 62 of file ConnectionManager.php.
References Wikimedia\Rdbms\ConnectionManager\$domain, Wikimedia\Rdbms\ConnectionManager\$groups, and Wikimedia\Rdbms\ConnectionManager\$loadBalancer.
|
private |
int | $i | |
string[] | null | $groups |
Definition at line 78 of file ConnectionManager.php.
References Wikimedia\Rdbms\ConnectionManager\$groups.
Referenced by Wikimedia\Rdbms\ConnectionManager\getReadConnection(), and Wikimedia\Rdbms\ConnectionManager\getWriteConnection().
|
private |
int | $i | |
string[] | null | $groups |
Definition at line 89 of file ConnectionManager.php.
References Wikimedia\Rdbms\ConnectionManager\$groups.
Referenced by Wikimedia\Rdbms\ConnectionManager\getReadConnectionRef(), and Wikimedia\Rdbms\ConnectionManager\getWriteConnectionRef().
Wikimedia\Rdbms\ConnectionManager::getReadConnection | ( | array | $groups = null | ) |
Returns a database connection for reading.
The connection should later be released by calling releaseConnection().
string[] | null | $groups |
Reimplemented in Wikimedia\Rdbms\SessionConsistentConnectionManager.
Definition at line 116 of file ConnectionManager.php.
References Wikimedia\Rdbms\ConnectionManager\$groups, DB_REPLICA, and Wikimedia\Rdbms\ConnectionManager\getConnection().
Wikimedia\Rdbms\ConnectionManager::getReadConnectionRef | ( | array | $groups = null | ) |
Returns a database connection ref for reading.
string[] | null | $groups |
Reimplemented in Wikimedia\Rdbms\SessionConsistentConnectionManager.
Definition at line 150 of file ConnectionManager.php.
References Wikimedia\Rdbms\ConnectionManager\$groups, DB_REPLICA, and Wikimedia\Rdbms\ConnectionManager\getConnectionRef().
Wikimedia\Rdbms\ConnectionManager::getWriteConnection | ( | ) |
Returns a connection to the master DB, for updating.
The connection should later be released by calling releaseConnection().
Reimplemented in Wikimedia\Rdbms\SessionConsistentConnectionManager.
Definition at line 102 of file ConnectionManager.php.
References DB_MASTER, and Wikimedia\Rdbms\ConnectionManager\getConnection().
Wikimedia\Rdbms\ConnectionManager::getWriteConnectionRef | ( | ) |
Returns a connection ref to the master DB, for updating.
Reimplemented in Wikimedia\Rdbms\SessionConsistentConnectionManager.
Definition at line 137 of file ConnectionManager.php.
References DB_MASTER, and Wikimedia\Rdbms\ConnectionManager\getConnectionRef().
Wikimedia\Rdbms\ConnectionManager::releaseConnection | ( | IDatabase | $db | ) |
|
private |
The symbolic name of the target database, or false for the local wiki's database.
Definition at line 47 of file ConnectionManager.php.
Referenced by Wikimedia\Rdbms\ConnectionManager\__construct().
|
private |
Definition at line 52 of file ConnectionManager.php.
Referenced by Wikimedia\Rdbms\ConnectionManager\__construct(), Wikimedia\Rdbms\ConnectionManager\getConnection(), Wikimedia\Rdbms\ConnectionManager\getConnectionRef(), Wikimedia\Rdbms\ConnectionManager\getReadConnection(), Wikimedia\Rdbms\SessionConsistentConnectionManager\getReadConnection(), Wikimedia\Rdbms\ConnectionManager\getReadConnectionRef(), and Wikimedia\Rdbms\SessionConsistentConnectionManager\getReadConnectionRef().
|
private |
Definition at line 40 of file ConnectionManager.php.
Referenced by Wikimedia\Rdbms\ConnectionManager\__construct().