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 5aff4a66f1 bug #34896 [Cache] fix memory leak when using PhpFilesAdapter (nicolas-grekas)
This PR was merged into the 4.3 branch.

Discussion
----------

[Cache] fix memory leak when using PhpFilesAdapter

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #34687
| License       | MIT
| Doc PR        | -

Similar to #34839 but for `PhpFilesAdapter`, as the "appendOnly" mode is a v4-only feature.

Commits
-------

0b46226648 [Cache] fix memory leak when using PhpFilesAdapter
2019-12-10 11:24:37 +01:00
..
Adapter Merge branch '3.4' into 4.3 2019-12-07 17:25:26 +01:00
DataCollector Merge branch '3.4' into 4.3 2019-08-14 14:26:46 +02:00
DependencyInjection Fixed cache pools affecting each other due to an overwritten seed variable 2019-09-13 12:59:08 +02:00
Exception [Cache] deprecate all PSR-16 adapters, provide Psr16Cache instead 2019-01-25 18:46:02 +01:00
Marshaller [Cache] Disable igbinary on PHP >= 7.4 2019-11-17 11:56:39 +01:00
Simple Merge branch '3.4' into 4.3 2019-12-07 17:25:26 +01:00
Tests bug #34896 [Cache] fix memory leak when using PhpFilesAdapter (nicolas-grekas) 2019-12-10 11:24:37 +01:00
Traits bug #34896 [Cache] fix memory leak when using PhpFilesAdapter (nicolas-grekas) 2019-12-10 11:24:37 +01:00
.gitignore
CacheItem.php Merge branch '3.4' into 4.3 2019-08-20 23:02:25 +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 Merge branch '3.4' into 4.3 2019-08-26 10:26:39 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
LockRegistry.php [Cache] fail gracefully when locking is not supported 2019-09-25 15:53:41 +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] give 100ms before starting the expiration countdown 2019-10-04 12:57:53 +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