We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb4f9b commit 3c61af0Copy full SHA for 3c61af0
MemcachedCachePool.php
@@ -67,7 +67,9 @@ protected function clearOneObjectFromCache($key)
67
{
68
$this->commit();
69
$key = $this->getHierarchyKey($key, $path);
70
- $this->cache->increment($path, 1, 0);
+ if ($path) {
71
+ $this->cache->increment($path, 1, 0);
72
+ }
73
$this->clearHierarchyKeyCache();
74
75
if ($this->cache->delete($key)) {
0 commit comments