]> 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 417accdce75ccd7f8d1ae065df12857f9016090c..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;
        }
 }