Merge pull request #6612 from MrPetovan/bug/6605-cache-config-adapter-connection

Cache config adapter connection status to reduce number of calls to DBA::isConnected()
This commit is contained in:
Michael Vogel
2019-02-09 06:57:48 +01:00
committed by GitHub
3 changed files with 6 additions and 1 deletions
+4 -1
View File
@@ -6,8 +6,11 @@ use Friendica\Database\DBA;
abstract class AbstractDbaConfigAdapter
{
/** @var bool */
protected $connected = true;
public function isConnected()
{
return DBA::connected();
return $this->connected;
}
}
+1
View File
@@ -26,6 +26,7 @@ class JITConfigAdapter extends AbstractDbaConfigAdapter implements IConfigAdapte
public function __construct(IConfigCache $configCache)
{
$this->configCache = $configCache;
$this->connected = DBA::connected();
}
/**
+1
View File
@@ -27,6 +27,7 @@ class PreloadConfigAdapter extends AbstractDbaConfigAdapter implements IConfigAd
public function __construct(IConfigCache $configCache)
{
$this->configCache = $configCache;
$this->connected = DBA::connected();
$this->load();
}