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 a218efebee Merge branch '4.2' into 4.3
* 4.2:
  [HttpFoundation] Throw exception when the \"session\" extension is not loaded
  remove invalid test cases
  [Serializer] Fixed PHP of DenormalizableInterface::denormalize
  [Cache] work aroung PHP memory leak
  [Finder] docblock fixes
  pass error code as a string
  Catch JsonException and rethrow in JsonEncode
2019-06-28 15:16:30 +02:00
..
Adapter Merge branch '4.2' into 4.3 2019-06-17 19:37:00 +02:00
DataCollector Merge branch '4.1' into 4.2 2019-01-16 21:31:39 +01:00
DependencyInjection [Cache] Add optimized FileSystem & Redis TagAware Adapters 2019-04-24 07:47:35 +02:00
Exception [Cache] deprecate all PSR-16 adapters, provide Psr16Cache instead 2019-01-25 18:46:02 +01:00
Marshaller fixed CS 2019-01-16 21:35:37 +01:00
Simple Merge branch '4.2' into 4.3 2019-06-17 19:37:00 +02:00
Tests fixed CS 2019-06-26 09:55:28 +02:00
Traits Merge branch '4.2' into 4.3 2019-06-28 15:16:30 +02:00
.gitignore [Cache] Symfony PSR-6 implementation 2016-01-19 08:02:17 +01:00
CacheItem.php fixed CS 2019-06-13 12:57:15 +02:00
CHANGELOG.md [Cache] deprecate all PSR-16 adapters, provide Psr16Cache instead 2019-01-25 18:46:02 +01:00
composer.json Reference individual contracts packages 2019-05-27 10:16:38 +02:00
DoctrineProvider.php renamed Contract to Contracts 2018-07-13 19:06:58 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
LockRegistry.php [Cache] Add optimized FileSystem & Redis TagAware Adapters 2019-04-24 07:47:35 +02:00
phpunit.xml.dist [Cache] Add optimized FileSystem & Redis TagAware Adapters 2019-04-24 07:47:35 +02:00
PruneableInterface.php add (pdo|chain) cache (adapter|simple) prune method 2017-08-30 11:10:37 -04:00
Psr16Cache.php [Cache] deprecate all PSR-16 adapters, provide Psr16Cache instead 2019-01-25 18:46:02 +01: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