]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ICacheDriver.php
Improve redis configuration
[friendica.git] / src / Core / Cache / ICacheDriver.php
index 9ddcf5ad1fe8d530c44bb6ca628e813d1b147fb2..1188e51877f65e2fecc40ad36a68cf67b44d9209 100644 (file)
@@ -11,6 +11,15 @@ use Friendica\Core\Cache;
  */
 interface ICacheDriver
 {
+       /**
+        * Lists all cache keys
+        *
+        * @param string prefix optional a prefix to search
+        *
+        * @return array Empty if it isn't supported by the cache driver
+        */
+       public function getAllKeys($prefix = null);
+
        /**
         * Fetches cached data according to the key
         *
@@ -25,7 +34,7 @@ interface ICacheDriver
         *
         * @param string  $key      The cache key
         * @param mixed   $value    The value to store
-        * @param integer $ttl The cache lifespan, must be one of the Cache constants
+        * @param integer $ttl      The cache lifespan, must be one of the Cache constants
         *
         * @return bool
         */