]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/AbstractCacheDriver.php
Merge pull request #5794 from annando/ap1
[friendica.git] / src / Core / Cache / AbstractCacheDriver.php
index ac33467b9649a2ead2dc5b8a7fe9714e908908b4..15b822dc3b519f8e0fac9412429991a1f06384f7 100644 (file)
@@ -18,6 +18,7 @@ abstract class AbstractCacheDriver extends BaseObject
         * @return string               The cache key used for the cache
         */
        protected function getCacheKey($key) {
+               // We fetch with the hostname as key to avoid problems with other applications
                return self::getApp()->get_hostname() . ":" . $key;
        }
-}
\ No newline at end of file
+}