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 cf073e563f Merge branch '4.4' into 5.0
* 4.4:
  Fix merge
  [DoctrineBridge] try to fix deprecations from doctrine/persistence
  [DI] Add support for immutable setters in CallTrait
  [Cache] Propagate expiry when syncing items in ChainAdapter
  Removed request header "Content-Type" from the preferred format guessing mechanism
  [Routing] fix memoryleak when loading compiled routes
  [Translation] fix memoryleak in PhpFileLoader
  fix triggering deprecation in file locator
  bug #34877 [TwigBundle] fix findTemplate() to return `null`
2019-12-12 14:03:32 +01:00
..
Adapter Merge branch '4.4' into 5.0 2019-12-12 14:03:32 +01:00
DataCollector Fix some \Throwable support remaining issues 2019-11-12 18:18:47 +01:00
DependencyInjection Merge branch '4.3' into 4.4 2019-09-15 10:41:08 +02:00
Exception Revert "minor #32054 Prepare for PHP 7.4 preload (nicolas-grekas)" 2019-06-20 08:42:33 +02:00
Marshaller Merge branch '4.4' 2019-11-17 12:01:19 +01:00
Tests Merge branch '4.4' into 5.0 2019-12-12 14:03:32 +01:00
Traits Merge branch '4.3' into 4.4 2019-12-10 11:33:21 +01:00
.gitattributes Add .gitignore to .gitattributes 2019-10-12 01:35:04 +01:00
.gitignore
CacheItem.php Merge branch '4.4' 2019-09-11 10:39:10 +02:00
CHANGELOG.md Merge branch '4.4' 2019-11-05 18:32:06 +01:00
composer.json Allow PHP ^7.2.5 2019-11-18 18:27:11 +01:00
DoctrineProvider.php Merge branch '4.3' into 4.4 2019-08-26 11:00:56 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
LockRegistry.php Merge branch '4.4' 2019-09-27 00:15:24 +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 Merge branch '4.3' into 4.4 2019-10-04 23:43:27 +02: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