-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInMemoryCachePool.php
86 lines (70 loc) · 1.75 KB
/
InMemoryCachePool.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
namespace Rikudou\MemoizeBundle\Cache;
use JetBrains\PhpStorm\Pure;
use LogicException;
use Psr\Cache\CacheItemInterface;
use Psr\Cache\CacheItemPoolInterface;
use Psr\Cache\InvalidArgumentException;
final class InMemoryCachePool implements CacheItemPoolInterface
{
/**
* @var array<CacheItem>
*/
private array $items = [];
#[Pure]
public function getItem(string $key): CacheItemInterface
{
return $this->items[$key] ?? new CacheItem($key);
}
/**
* @param array<string> $keys
*
* @throws InvalidArgumentException
*
* @return iterable<CacheItemInterface>
*/
public function getItems(array $keys = []): iterable
{
foreach ($keys as $key) {
yield $this->getItem($key);
}
}
public function hasItem(string $key): bool
{
return isset($this->items[$key]);
}
public function clear(): bool
{
$this->items = [];
return true;
}
public function deleteItem(string $key): bool
{
unset($this->items[$key]);
return true;
}
public function deleteItems(array $keys): bool
{
foreach ($keys as $key) {
$this->deleteItem($key);
}
return true;
}
public function save(CacheItemInterface $item): bool
{
if (!$item instanceof CacheItem) {
throw new LogicException(sprintf("Only instances of '%s' can be handled", CacheItem::class));
}
$item->setIsHit(true);
$this->items[$item->getKey()] = $item;
return true;
}
public function saveDeferred(CacheItemInterface $item): bool
{
return $this->save($item);
}
public function commit(): bool
{
return true;
}
}