This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Cache
Fabien Potencier bc8d4f627e feature #27646 [Cache] added support for phpredis 4 compression and tcp_keepalive options (nicolas-grekas)
This PR was merged into the 4.2-dev branch.

Discussion
----------

[Cache] added support for phpredis 4 `compression` and `tcp_keepalive` options

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | yes
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

See https://pecl.php.net/package-changelog.php?package=redis

Commits
-------

2ff02cd333 [Cache] added support for phpredis 4 `compression` and `tcp_keepalive` options
2018-06-20 19:52:00 +02:00
..
Adapter feature #27543 [Cache] serialize objects using native arrays when possible (nicolas-grekas) 2018-06-18 17:28:27 +02:00
DataCollector [Cache] Add [Taggable]CacheInterface, the easiest way to use a cache 2018-05-18 14:27:36 +02:00
Exception [Cache] Add [Taggable]CacheInterface, the easiest way to use a cache 2018-05-18 14:27:36 +02:00
Marshaller [Cache] serialize objects using native arrays when possible 2018-06-18 10:20:36 +02:00
Simple feature #27543 [Cache] serialize objects using native arrays when possible (nicolas-grekas) 2018-06-18 17:28:27 +02:00
Tests feature #27646 [Cache] added support for phpredis 4 compression and tcp_keepalive options (nicolas-grekas) 2018-06-20 19:52:00 +02:00
Traits feature #27646 [Cache] added support for phpredis 4 compression and tcp_keepalive options (nicolas-grekas) 2018-06-20 19:52:00 +02:00
.gitignore [Cache] Symfony PSR-6 implementation 2016-01-19 08:02:17 +01:00
CacheInterface.php [Cache] Add stampede protection via probabilistic early expiration 2018-06-10 18:44:41 +02:00
CacheItem.php [Cache] Use sub-second accuracy for internal expiry calculations 2018-06-11 14:32:29 +02:00
CHANGELOG.md [Cache] added support for phpredis 4 compression and tcp_keepalive options 2018-06-20 10:12:31 +02:00
composer.json [Cache] serialize objects using native arrays when possible 2018-06-18 10:20:36 +02:00
DoctrineProvider.php [Cache] Add ResettableInterface to allow resetting any pool's local state 2017-09-25 10:20:08 +02:00
LICENSE Merge branch '2.8' into 3.3 2018-01-03 18:13:53 +01:00
LockRegistry.php [Cache] Prevent stampede at warmup using flock() 2018-06-18 17:06:11 +02:00
phpunit.xml.dist [Cache] Rely on mock for Doctrine ArrayCache 2018-03-19 23:12:11 +01:00
PruneableInterface.php add (pdo|chain) cache (adapter|simple) prune method 2017-08-30 11:10:37 -04:00
README.md [CACHE] fix README 2017-05-25 00:25:35 +07:00
ResettableInterface.php [Cache] Add ResettableInterface to allow resetting any pool's local state 2017-09-25 10:20:08 +02:00

Symfony PSR-6 implementation for caching

This component provides an extended PSR-6 implementation for adding cache to your applications. It is designed to have a low overhead so that caching is fastest. It ships with a few caching adapters for the most widespread and suited to caching backends. It also provides a doctrine/cache proxy adapter to cover more advanced caching needs and a proxy adapter for greater interoperability between PSR-6 implementations.

Resources