Build a caching repository decorator for settings

This commit is contained in:
Franz Liedke 2015-07-15 23:17:53 +02:00
parent 8e9cf4fd2e
commit ba3fa73f16

View File

@ -0,0 +1,45 @@
<?php
namespace Flarum\Core\Settings;
class CachedSettingsRepository implements SettingsRepository
{
protected $inner;
protected $isCached;
protected $cache = [];
public function __construct(SettingsRepository $inner)
{
$this->inner = $inner;
}
public function all()
{
if (!$this->isCached) {
$this->cache = $this->inner->all();
$this->isCached = true;
}
return $this->cache;
}
public function get($key, $default = null)
{
if (array_key_exists($key, $this->cache)) {
return $this->cache[$key];
} else if (!$this->isCached) {
return array_get($this->all(), $key, $default);
}
return $default;
}
public function set($key, $value)
{
$this->cache[$key] = $value;
$this->inner->set($key, $value);
}
}