src/Comodojo/Cache/Providers/AbstractEnhancedProvider.php 1 location
|
@@ 257-267 (lines=11) @@
|
| 254 |
|
|
| 255 |
|
} |
| 256 |
|
|
| 257 |
|
public function saveDeferred(CacheItemInterface $item) { |
| 258 |
|
|
| 259 |
|
$this->checkQueueNamespace(true); |
| 260 |
|
|
| 261 |
|
$namespace = $this->getNamespace(); |
| 262 |
|
|
| 263 |
|
$this->queue[$namespace][$item->getKey()] = $item; |
| 264 |
|
|
| 265 |
|
return true; |
| 266 |
|
|
| 267 |
|
} |
| 268 |
|
|
| 269 |
|
public function commit() { |
| 270 |
|
|
src/Comodojo/Cache/Traits/BasicCacheItemPoolTrait.php 1 location
|
@@ 53-63 (lines=11) @@
|
| 50 |
|
|
| 51 |
|
} |
| 52 |
|
|
| 53 |
|
public function saveDeferred(CacheItemInterface $item) { |
| 54 |
|
|
| 55 |
|
$this->checkQueueNamespace(true); |
| 56 |
|
|
| 57 |
|
$namespace = $this->getNamespace(); |
| 58 |
|
|
| 59 |
|
$this->queue[$namespace][$item->getKey()] = $item; |
| 60 |
|
|
| 61 |
|
return true; |
| 62 |
|
|
| 63 |
|
} |
| 64 |
|
|
| 65 |
|
public function commit() { |
| 66 |
|
|