You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With xdebug.profile+QCacheGrind on medium complex Controler+Model I found a bottleneck on "function recursive($arg,$func,$stack=[]) {" in base.php:
... the bottleneck is on the render of the page to call recursiverly function encode($str) {...} on all the hive.
There is a solution to get this time back without set ESCAPE=false?
Why not caching the static part (DICT, config.ini ...) of the hive encoded and use this with the part coming from Controller?
The text was updated successfully, but these errors were encountered:
The issue here is that the complete HIVE is implicitly forwarded and escaped for rendering a template. You can specify a custom HIVE / array when rendering templates to minimize the amount of data that has to be escaped. If you want to have access to a whole escaped HIVE this will of course not solve the issue.
With xdebug.profile+QCacheGrind on medium complex Controler+Model I found a bottleneck on "function recursive($arg,$func,$stack=[]) {" in base.php:
... the bottleneck is on the render of the page to call recursiverly function encode($str) {...} on all the hive.
There is a solution to get this time back without set ESCAPE=false?
Why not caching the static part (DICT, config.ini ...) of the hive encoded and use this with the part coming from Controller?
The text was updated successfully, but these errors were encountered: