Task #81006
closedSignificant performance improvement by switching Fluid cache backend to SimpleFileBackend
100%
Description
Currently, fluid_template cache uses the FileBackend which has a lot of added features that are not needed. Most damning aspect of the backend is that it will continually do multiple file_get_content() calls for every call to "requireOnce()" when the backend is not frozen - and freezing the backend prevents Fluid from operating.
Switching to SimpleFileBackend drastically reduces the number of calls to file_get_contents() because the "has()" method on that backend avoids this call and in general, uses the file_get_contents() method a lot less frequently.
We'll lose the option to freeze the Fluid backend unless manually configured to be frozen, but we gain a serious performance increase for every TYPO3 site out there.
Updated by Gerrit Code Review over 7 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52597
Updated by Gerrit Code Review over 7 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52597
Updated by Gerrit Code Review over 7 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52597
Updated by Gerrit Code Review over 7 years ago
Patch set 1 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52622
Updated by Anonymous over 7 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 982ed195fd2c0dbd34825748241349aed6e8e480.