mirror of
https://github.com/friendica/friendica
synced 2024-11-19 02:23:41 +00:00
- Remove deprecated Redis::delete() function
This commit is contained in:
parent
31cfac1cfa
commit
b28e11fee8
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ class RedisCache extends Cache implements IMemoryCache
|
|||
public function delete($key)
|
||||
{
|
||||
$cachekey = $this->getCacheKey($key);
|
||||
return ($this->redis->delete($cachekey) > 0);
|
||||
return ($this->redis->del($cachekey) > 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue