Merge pull request #8998 from MrPetovan/bug/warnings
Fix unexpected return value of RedisCache->delete()
This commit is contained in:
commit
7841b0549a
1 changed files with 3 additions and 1 deletions
|
@ -139,7 +139,9 @@ class RedisCache extends BaseCache implements IMemoryCache
|
||||||
public function delete($key)
|
public function delete($key)
|
||||||
{
|
{
|
||||||
$cachekey = $this->getCacheKey($key);
|
$cachekey = $this->getCacheKey($key);
|
||||||
return ($this->redis->del($cachekey) > 0);
|
$this->redis->del($cachekey);
|
||||||
|
// Redis doesn't have an error state for del()
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue