]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ICacheDriver.php
Merge pull request #6784 from nupplaphil/task/image_to_model
[friendica.git] / src / Core / Cache / ICacheDriver.php
index ced7b4e2168b935ab72467631df50581fd3f0e1a..1188e51877f65e2fecc40ad36a68cf67b44d9209 100644 (file)
@@ -7,10 +7,19 @@ use Friendica\Core\Cache;
 /**
  * Cache Driver Interface
  *
- * @author Hypolite Petovan <mrpetovan@gmail.com>
+ * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 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
         */
@@ -42,8 +51,9 @@ interface ICacheDriver
 
        /**
         * Remove outdated data from the cache
+        * @param  boolean $outdated just remove outdated values
         *
         * @return bool
         */
-       public function clear();
+       public function clear($outdated = true);
 }