This commit is contained in:
2022-09-20 18:23:19 +08:00
parent 2ce699faa7
commit d520b5fbc4
+6 -4
View File
@@ -91,14 +91,15 @@ class Connection extends Component
/** /**
* @param mixed $config * @param mixed $config
* @param bool $isMaster
* @return PDO|null * @return PDO|null
* @throws Exception * @throws Kiri\Exception\ConfigException
*/ */
public function get(mixed $config): ?PDO public function get(mixed $config, bool $isMaster = false): ?PDO
{ {
$minx = Config::get('databases.pool.min', 1); $minx = Config::get('databases.pool.min', 1);
return $this->pool->get($config['cds'], $this->generate($config), $minx); return $this->pool->get($config['cds'] . ($isMaster ? 'master' : 'slave'), $this->generate($config), $minx);
} }
@@ -189,7 +190,8 @@ class Connection extends Component
/** /**
* @throws Exception * @throws Exception
*/ */
public function flush($coroutineName, $minNumber = 1) { public function flush($coroutineName, $minNumber = 1)
{
$this->pool->flush($coroutineName, $minNumber); $this->pool->flush($coroutineName, $minNumber);
} }