Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SettingsStorage.php « Tracker « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a69e03553f5f11db50e29959ccef6295d76ec79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */

namespace Piwik\Tracker;

use Piwik\Settings\Storage;
use Piwik\Tracker;
use Piwik\Cache as PiwikCache;

/**
 * Loads settings from tracker cache instead of database. If not yet present in tracker cache will cache it.
 */
class SettingsStorage extends Storage
{
    protected function loadSettings()
    {
        $cacheId = $this->getOptionKey();
        $cache = $this->getCache();

        if ($cache->contains($cacheId)) {
            $settings = $cache->fetch($cacheId);
        } else {
            $settings = parent::loadSettings();

            $cache->save($cacheId, $settings);
        }

        return $settings;
    }

    public function save()
    {
        parent::save();
        self::clearCache();
    }

    private function getCache()
    {
        return self::buildCache($this->getOptionKey());
    }

    public static function clearCache()
    {
        Cache::deleteTrackerCache();
        self::buildCache()->flushAll();
    }

    private static function buildCache()
    {
        return PiwikCache::getEagerCache();
    }
}