Actions
Bug #65591
closedVarious caches not cleared by "clear all cache"
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Caching
Target version:
-
Start date:
2015-03-08
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Even when doing a "clear all cache" from install-tool some caches are not cleared. This showed up when a memcache-backend was defined for "extbase_reflection". The flush-method was never called.
CacheManager passes the flushCaches() on to all Cache-frontends which call flush for their backend.
In typo3/sysext/install/Classes/Controller/AbstractController.php, loadBaseExtensions() various caches (including extbase_reflection) are defined with a NullBackend.
Defining a "dummy"-cache with memcache-backend unfortunately also didn't trigger a clear, since the cache-identifier is part of the tag to be flushed.
Actions