]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ArrayCache.php
Merge pull request #7754 from annando/aria
[friendica.git] / src / Core / Cache / ArrayCache.php
index d1302c1d6ec327d5f04a0a570b58c4da747954b5..c6f3983ee2586efed12aeed3a8db4d516ccef3f7 100644 (file)
@@ -2,23 +2,28 @@
 
 namespace Friendica\Core\Cache;
 
-
-use Friendica\Core\Cache;
-
 /**
- * Implementation of the IMemoryCacheDriver mainly for testing purpose
+ * Implementation of the IMemoryCache mainly for testing purpose
  *
  * Class ArrayCache
  *
  * @package Friendica\Core\Cache
  */
-class ArrayCache extends AbstractCacheDriver implements IMemoryCacheDriver
+class ArrayCache extends Cache implements IMemoryCache
 {
        use TraitCompareDelete;
 
        /** @var array Array with the cached data */
        protected $cachedData = array();
 
+       /**
+        * (@inheritdoc)
+        */
+       public function getAllKeys($prefix = null)
+       {
+               return $this->filterArrayKeysByPrefix(array_keys($this->cachedData), $prefix);
+       }
+
        /**
         * (@inheritdoc)
         */
@@ -85,4 +90,12 @@ class ArrayCache extends AbstractCacheDriver implements IMemoryCacheDriver
                        return false;
                }
        }
+
+       /**
+        * {@inheritDoc}
+        */
+       public function getName()
+       {
+               return self::TYPE_ARRAY;
+       }
 }