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 20bb3cb3ab Merge branch '5.2' into 5.x
* 5.2:
  merge translation parameters with value configured for parent form
  scan directories for translations sequentially
  Fix kafka tests
  Fix "provide" declarations
  Provide implemented packages of replaced dependencies
  Always autoload string functions on symfony/symfony
2021-02-08 11:24:30 +01:00
..
Adapter [Cache] Change PDO cache table collate from utf8_bin to utf8mb4_bin 2021-01-25 20:20:05 +01:00
DataCollector Merge branch '4.4' into 5.0 2020-01-09 13:59:02 +01:00
DependencyInjection [Cache] Allow ISO 8601 time intervals to specify default lifetime 2020-10-05 15:19:55 +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' into 5.1 2020-10-12 13:21:05 +02:00
Messenger [Cache] add integration with Messenger to allow computing cached values in a worker 2020-09-11 15:42:58 +02:00
Tests Merge branch '5.2' into 5.x 2021-01-27 12:30:19 +01:00
Traits Merge branch '5.2' into 5.x 2021-01-14 16:43:35 +01:00
.gitattributes add missing gitattributes for phpunit-bridge 2020-03-27 17:54:36 +01:00
.gitignore [Cache] Symfony PSR-6 implementation 2016-01-19 08:02:17 +01:00
CacheItem.php Merge branch '4.4' into 5.1 2020-12-23 16:26:14 +01:00
CHANGELOG.md No patch version in CHANGELOG 2021-01-14 08:18:56 +01:00
composer.json Merge branch '4.4' into 5.2 2021-02-06 09:52:42 +01:00
DoctrineProvider.php Merge branch '4.3' into 4.4 2019-08-26 11:00:56 +02:00
LICENSE Bump license year 2021-01-01 10:24:35 +01:00
LockRegistry.php [Cache] Allow ISO 8601 time intervals to specify default lifetime 2020-10-05 15:19:55 +02:00
phpunit.xml.dist [Cache] Add couchbase cache adapter 2020-02-04 11:32:31 +01:00
PruneableInterface.php add (pdo|chain) cache (adapter|simple) prune method 2017-08-30 11:10:37 -04:00
Psr16Cache.php Merge branch '4.4' into 5.1 2020-12-23 16:26:14 +01:00
README.md Improve composer.json descriptions 2021-01-10 17:25:35 +01:00
ResettableInterface.php renamed Contract to Contracts 2018-07-13 19:06:58 +02:00

Symfony PSR-6 implementation for caching

The Cache 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