Bug #64449
closed
Epic #65429: Speed up for Fluid ViewHelpers by usage of CompilableInterface
f:switch very slow since it does not implement CompilableInterface interface
Added by Christian Weiske almost 10 years ago.
Updated about 7 years ago.
Description
The Fluid SwitchViewHelper
(<f:switch>
) does not implement CompilableInterface
. This prevents the TemplateParser
from caching it, making template rendering unbearably slow.
<f:if>
on the other hand does implement the interface (through AbstractConditionViewHelper
) and gets cached properly.
<f:switch>
should be cached!
- Target version set to 7.2 (Frontend)
Btw, simply adding an "implements ..." line to the class declaration leads to bugs in the output.
Yes. This is not only this specific view helper, there are much more. I'm currently working on a fresh backport from TYPO3.fluid that has much more compilable interfaces implemented already, you can expect a patch in this area soon.
if backport is done, a couple of other view helpers that did not yet have been fixed in fluid upstream will be changed for cms core locally. the performance boost is just too high to wait for upstream at this point ... give me some time and expect this issue to be fixed soon. i'll ping you for reviews if you find the time, Christian.
- Parent task set to #65429
Hi,
that is a problem indeed. The actual issue is not that the ViewHelper itself is not compilable, but that it also implements the {ChildNodeAccessInterface}} which - in combination - leads to the whole template file not being compiled. (see https://jira.typo3.org/browse/FLOW-224).
BTW: The same is true when using widgets, but in those cases the issue is probably very hard to solve unfortunately (see https://jira.typo3.org/browse/FLOW-196).
- Status changed from New to Resolved
- % Done changed from 0 to 100
- Status changed from Resolved to Closed
Also available in: Atom
PDF