-
-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
The new CacheManager extension will be in charge to handle properly the caching system.
That's includes :
- Cache Invalidation feature like Symfony Cache Component propose
- The
lintcommand will "talk" to the CacheManager through the EventDispatcher - The CacheManager will propose manual cache clearing via some new console commands added on fly
- run
phplint cache:cleanconsole command to remove all cache entries from the cache directory, clearing it out entirely. - run
phplint cache:pruneconsole command to remove all unused cache entries. - run
phplint cache:untagconsole command to remove cache entries from the cache directory, identified by a list of tags.
- run
Depends on new Extension Architecture