Merge pull request #8998 from MrPetovan/bug/warnings

Fix unexpected return value of RedisCache->delete()
This commit is contained in:
Michael Vogel
2020-08-10 08:58:30 +02:00
committed by GitHub

View File

@@ -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;
} }
/** /**