src/Comodojo/Cache/Providers/AbstractEnhancedProvider.php 1 location
|
@@ 246-256 (lines=11) @@
|
| 243 |
|
|
| 244 |
|
} |
| 245 |
|
|
| 246 |
|
public function saveDeferred(CacheItemInterface $item) { |
| 247 |
|
|
| 248 |
|
$this->checkQueueNamespace(true); |
| 249 |
|
|
| 250 |
|
$namespace = $this->getNamespace(); |
| 251 |
|
|
| 252 |
|
$this->queue[$namespace][$item->getKey()] = $item; |
| 253 |
|
|
| 254 |
|
return true; |
| 255 |
|
|
| 256 |
|
} |
| 257 |
|
|
| 258 |
|
public function commit() { |
| 259 |
|
|
src/Comodojo/Cache/Traits/BasicCacheItemPoolTrait.php 1 location
|
@@ 55-65 (lines=11) @@
|
| 52 |
|
|
| 53 |
|
} |
| 54 |
|
|
| 55 |
|
public function saveDeferred(CacheItemInterface $item) { |
| 56 |
|
|
| 57 |
|
$this->checkQueueNamespace(true); |
| 58 |
|
|
| 59 |
|
$namespace = $this->getNamespace(); |
| 60 |
|
|
| 61 |
|
$this->queue[$namespace][$item->getKey()] = $item; |
| 62 |
|
|
| 63 |
|
return true; |
| 64 |
|
|
| 65 |
|
} |
| 66 |
|
|
| 67 |
|
public function commit() { |
| 68 |
|
|