diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-10-15 11:56:02 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-10-15 11:56:02 +0200 |
commit | e51010b0f43320d68e05e3d69a0d1d0ce45ca69e (patch) | |
tree | c2a38a690a00fa822b636716c29e1abc90210ba7 /lib | |
parent | 4011262fabd13eb5918e8b6a8091392bce75a287 (diff) | |
download | nextcloud-server-e51010b0f43320d68e05e3d69a0d1d0ce45ca69e.tar.gz nextcloud-server-e51010b0f43320d68e05e3d69a0d1d0ce45ca69e.zip |
Use a distributed cache for the isCachedCache
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Template/SCSSCacher.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Template/SCSSCacher.php b/lib/private/Template/SCSSCacher.php index 9bdaca3a674..1ddb4ff59dd 100644 --- a/lib/private/Template/SCSSCacher.php +++ b/lib/private/Template/SCSSCacher.php @@ -117,7 +117,7 @@ class SCSSCacher { $this->serverRoot = $serverRoot; $this->cacheFactory = $cacheFactory; $this->depsCache = $cacheFactory->createDistributed('SCSS-deps-' . md5($this->urlGenerator->getBaseUrl())); - $this->isCachedCache = $cacheFactory->createLocal('SCSS-cached-' . md5($this->urlGenerator->getBaseUrl())); + $this->isCachedCache = $cacheFactory->createDistributed('SCSS-cached-' . md5($this->urlGenerator->getBaseUrl())); $lockingCache = $cacheFactory->createDistributed('SCSS-locks-' . md5($this->urlGenerator->getBaseUrl())); if (!($lockingCache instanceof IMemcache)) { $lockingCache = new NullCache(); |