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
Nicolas Grekas 00e8908375 Merge branch '2.8' into 3.3
* 2.8:
  PHP CS Fixer: clean up repo and adjust config
  Dumper shouldn't use html format for phpdbg
  [Validator] Fix access to root object when using composite constraint
2018-01-03 18:13:53 +01:00
..
Adapter [3.3] More docblock fixes 2017-11-07 15:16:22 +01:00
DataCollector [HttpKernel et al.] Move DataCollector::cloneVar() to lateCollect() 2017-04-10 18:00:26 +02:00
Exception [Cache] Implement PSR-16 SimpleCache v1.0 2017-01-23 14:57:50 +01:00
Simple Merge branch '2.8' into 3.3 2017-10-02 08:42:24 +02:00
Tests Fix race condition in tests between cache and lock 2017-09-03 16:06:51 +02:00
Traits Update MemcachedTrait.php 2017-12-22 16:05:44 +01:00
.gitignore [Cache] Symfony PSR-6 implementation 2016-01-19 08:02:17 +01:00
CacheItem.php [Cache] Use namespace versioning for backends that dont support clearing by keys 2017-08-27 09:56:53 +02:00
CHANGELOG.md [Cache] Add CacheItem::getPreviousTags() 2017-03-15 09:07:24 +01:00
composer.json Always require symfony/polyfill-apcu to provide APCuIterator everywhere 2017-08-29 16:10:37 +02:00
DoctrineProvider.php [Cache] Add DoctrineProvider, for using PSR-6 pools in Doctrine Cache 2016-04-14 15:55:05 +02:00
LICENSE Merge branch '2.8' into 3.3 2018-01-03 18:13:53 +01:00
phpunit.xml.dist Merge branch '3.2' into 3.3 2017-05-24 18:53:35 +02:00
README.md [CACHE] fix README 2017-05-25 00:25:35 +07: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