return false;
}
+ $persistent = (bool)$this->configCache->get('database', 'persistent');
+
$this->emulate_prepares = (bool)$this->configCache->get('database', 'emulate_prepares');
$this->pdo_emulate_prepares = (bool)$this->configCache->get('database', 'pdo_emulate_prepares');
}
try {
- $this->connection = @new PDO($connect, $user, $pass);
+ $this->connection = @new PDO($connect, $user, $pass, [PDO::ATTR_PERSISTENT => $persistent]);
$this->connection->setAttribute(PDO::ATTR_EMULATE_PREPARES, $this->pdo_emulate_prepares);
$this->connected = true;
} catch (PDOException $e) {
// disable_pdo (Boolean)
// PDO is used by default (if available). Otherwise MySQLi will be used.
'disable_pdo' => false,
+
+ // persistent (Boolean)
+ // This controls if the system should use persistent connections or not.
+ // Persistent connections increase the performance.
+ // On the other hand the number of open connections are higher,
+ // this will most likely increase the system load.
+ 'persistent' => false,
],
'config' => [
// admin_email (Comma-separated list)