run:R W Run
DIR
2026-04-08 19:37:02
R W Run
DIR
2026-04-08 19:36:56
R W Run
DIR
2026-04-08 19:37:04
R W Run
DIR
2026-04-08 19:37:05
R W Run
DIR
2026-04-08 19:37:04
R W Run
DIR
2026-04-08 19:36:59
R W Run
3.88 KB
2026-04-08 19:31:20
R W Run
5.21 KB
2026-04-08 19:31:19
R W Run
2.17 KB
2026-04-08 19:31:21
R W Run
1.04 KB
2026-04-08 19:31:19
R W Run
6.46 KB
2026-04-08 19:31:21
R W Run
485 By
2026-04-08 19:31:20
R W Run
8.08 KB
2026-04-08 19:31:19
R W Run
927 By
2026-04-08 19:31:22
R W Run
418 By
2026-04-08 19:31:21
R W Run
error_log
📄CHANGELOG.md
1CHANGELOG
2=========
3
45.1.0
5-----
6
7 * added max-items + LRU + max-lifetime capabilities to `ArrayCache`
8 * added `CouchbaseBucketAdapter`
9 * added context `cache-adapter` to log messages
10
115.0.0
12-----
13
14 * removed all PSR-16 implementations in the `Simple` namespace
15 * removed `SimpleCacheAdapter`
16 * removed `AbstractAdapter::unserialize()`
17 * removed `CacheItem::getPreviousTags()`
18
194.4.0
20-----
21
22 * added support for connecting to Redis Sentinel clusters
23 * added argument `$prefix` to `AdapterInterface::clear()`
24 * improved `RedisTagAwareAdapter` to support Redis server >= 2.8 and up to 4B items per tag
25 * added `TagAwareMarshaller` for optimized data storage when using `AbstractTagAwareAdapter`
26 * added `DeflateMarshaller` to compress serialized values
27 * removed support for phpredis 4 `compression`
28 * [BC BREAK] `RedisTagAwareAdapter` is not compatible with `RedisCluster` from `Predis` anymore, use `phpredis` instead
29 * Marked the `CacheDataCollector` class as `@final`.
30 * added `SodiumMarshaller` to encrypt/decrypt values using libsodium
31
324.3.0
33-----
34
35 * removed `psr/simple-cache` dependency, run `composer require psr/simple-cache` if you need it
36 * deprecated all PSR-16 adapters, use `Psr16Cache` or `Symfony\Contracts\Cache\CacheInterface` implementations instead
37 * deprecated `SimpleCacheAdapter`, use `Psr16Adapter` instead
38
394.2.0
40-----
41
42 * added support for connecting to Redis clusters via DSN
43 * added support for configuring multiple Memcached servers via DSN
44 * added `MarshallerInterface` and `DefaultMarshaller` to allow changing the serializer and provide one that automatically uses igbinary when available
45 * implemented `CacheInterface`, which provides stampede protection via probabilistic early expiration and should become the preferred way to use a cache
46 * added sub-second expiry accuracy for backends that support it
47 * added support for phpredis 4 `compression` and `tcp_keepalive` options
48 * added automatic table creation when using Doctrine DBAL with PDO-based backends
49 * throw `LogicException` when `CacheItem::tag()` is called on an item coming from a non tag-aware pool
50 * deprecated `CacheItem::getPreviousTags()`, use `CacheItem::getMetadata()` instead
51 * deprecated the `AbstractAdapter::unserialize()` and `AbstractCache::unserialize()` methods
52 * added `CacheCollectorPass` (originally in `FrameworkBundle`)
53 * added `CachePoolClearerPass` (originally in `FrameworkBundle`)
54 * added `CachePoolPass` (originally in `FrameworkBundle`)
55 * added `CachePoolPrunerPass` (originally in `FrameworkBundle`)
56
573.4.0
58-----
59
60 * added using options from Memcached DSN
61 * added PruneableInterface so PSR-6 or PSR-16 cache implementations can declare support for manual stale cache pruning
62 * added prune logic to FilesystemTrait, PhpFilesTrait, PdoTrait, TagAwareAdapter and ChainTrait
63 * now FilesystemAdapter, PhpFilesAdapter, FilesystemCache, PhpFilesCache, PdoAdapter, PdoCache, ChainAdapter, and
64 ChainCache implement PruneableInterface and support manual stale cache pruning
65
663.3.0
67-----
68
69 * added CacheItem::getPreviousTags() to get bound tags coming from the pool storage if any
70 * added PSR-16 "Simple Cache" implementations for all existing PSR-6 adapters
71 * added Psr6Cache and SimpleCacheAdapter for bidirectional interoperability between PSR-6 and PSR-16
72 * added MemcachedAdapter (PSR-6) and MemcachedCache (PSR-16)
73 * added TraceableAdapter (PSR-6) and TraceableCache (PSR-16)
74
753.2.0
76-----
77
78 * added TagAwareAdapter for tags-based invalidation
79 * added PdoAdapter with PDO and Doctrine DBAL support
80 * added PhpArrayAdapter and PhpFilesAdapter for OPcache-backed shared memory storage (PHP 7+ only)
81 * added NullAdapter
82
833.1.0
84-----
85
86 * added the component with strict PSR-6 implementations
87 * added ApcuAdapter, ArrayAdapter, FilesystemAdapter and RedisAdapter
88 * added AbstractAdapter, ChainAdapter and ProxyAdapter
89 * added DoctrineAdapter and DoctrineProvider for bidirectional interoperability with Doctrine Cache
90