]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ArrayCache.php
Merge pull request #6942 from annando/worker-fast-commands
[friendica.git] / src / Core / Cache / ArrayCache.php
index d1302c1d6ec327d5f04a0a570b58c4da747954b5..a99b05788f64e75e46d5d8e4df8c230bdcf6c414 100644 (file)
@@ -19,6 +19,14 @@ class ArrayCache extends AbstractCacheDriver implements IMemoryCacheDriver
        /** @var array Array with the cached data */
        protected $cachedData = array();
 
+       /**
+        * (@inheritdoc)
+        */
+       public function getAllKeys($prefix = null)
+       {
+               return $this->filterArrayKeysByPrefix($this->cachedData, $prefix);
+       }
+
        /**
         * (@inheritdoc)
         */