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
2018-10-02 19:45:17 +02:00
..
Adapter feature #28588 [Cache] add "setCallbackWrapper()" on adapters implementing CacheInterface for more flexibility (nicolas-grekas) 2018-09-26 09:18:20 +02:00
DataCollector [Cache] Add [Taggable]CacheInterface, the easiest way to use a cache 2018-05-18 14:27:36 +02:00
Exception [Cache] leverage Contracts\Cache 2018-09-04 09:24:06 +02:00
Marshaller [VarExporter] a new component to serialize values to plain PHP code 2018-08-27 18:34:07 +02:00
Simple [Cache] make PhpMarshaller handle hard references 2018-08-14 16:20:41 +02:00
Tests [Cache] support configuring multiple Memcached servers in one DSN 2018-09-25 18:08:15 +02:00
Traits [Cache] add RedisClusterProxy to create lazy connections to Redis clusters 2018-10-02 19:45:17 +02:00
.gitignore [Cache] Symfony PSR-6 implementation 2016-01-19 08:02:17 +01:00
CacheItem.php [Cache] leverage Contracts\Cache 2018-09-04 09:24:06 +02:00
CHANGELOG.md [Cache] support configuring multiple Memcached servers in one DSN 2018-09-25 18:08:15 +02:00
composer.json [Contracts] fine tune composer.json declarations for suggest/provide 2018-09-20 15:44:19 +02:00
DoctrineProvider.php renamed Contract to Contracts 2018-07-13 19:06:58 +02:00
LICENSE Merge branch '2.8' into 3.3 2018-01-03 18:13:53 +01:00
LockRegistry.php [Cache] add "setCallbackWrapper()" on adapters implementing CacheInterface for more flexibility 2018-09-24 20:03:00 +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 renamed Contract to Contracts 2018-07-13 19:06:58 +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