sforkowany z mirror/friendica
Cache config adapter connection status to reduce number of calls to DBA::isConnected()
rodzic
3aa77685fc
commit
337c02bd80
|
@ -6,8 +6,11 @@ use Friendica\Database\DBA;
|
||||||
|
|
||||||
abstract class AbstractDbaConfigAdapter
|
abstract class AbstractDbaConfigAdapter
|
||||||
{
|
{
|
||||||
|
/** @var bool */
|
||||||
|
protected $connected = true;
|
||||||
|
|
||||||
public function isConnected()
|
public function isConnected()
|
||||||
{
|
{
|
||||||
return DBA::connected();
|
return $this->connected;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,7 @@ class JITConfigAdapter extends AbstractDbaConfigAdapter implements IConfigAdapte
|
||||||
public function __construct(IConfigCache $configCache)
|
public function __construct(IConfigCache $configCache)
|
||||||
{
|
{
|
||||||
$this->configCache = $configCache;
|
$this->configCache = $configCache;
|
||||||
|
$this->connected = DBA::connected();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -27,6 +27,7 @@ class PreloadConfigAdapter extends AbstractDbaConfigAdapter implements IConfigAd
|
||||||
public function __construct(IConfigCache $configCache)
|
public function __construct(IConfigCache $configCache)
|
||||||
{
|
{
|
||||||
$this->configCache = $configCache;
|
$this->configCache = $configCache;
|
||||||
|
$this->connected = DBA::connected();
|
||||||
$this->load();
|
$this->load();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue