friendica-5847 Console Cache List command doesn't work

- filterPrefix => filterArrayKeysByPrefix()
- Logging failed Executions of getAllKeys and get from Memcached
This commit is contained in:
Philipp Holzer 2018-10-07 10:35:37 +02:00
parent 3f0f3b6ae6
commit 1ec5c6b284
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
5 changed files with 26 additions and 28 deletions

View file

@ -24,7 +24,7 @@ class ArrayCache extends AbstractCacheDriver implements IMemoryCacheDriver
*/
public function getAllKeys($prefix = null)
{
return $this->filterPrefix($this->cachedData, $prefix);
return $this->filterArrayKeysByPrefix($this->cachedData, $prefix);
}
/**