Hello,
Is it possible to cache only partials in a view ?
How does work the "level" option of the cache method of the view, it's not really clear.
Thanks in advance
php{# cache the partial by 1 hour #} {% cache "partial" 3600 %} {{ partial('partial_name') }} {% endcache %}
I think you could do something like this. That is from the docs https://docs.phalcon.io/en/latest/reference/volt.html
How can I cache a partial if I don't use volt, but phtml templates?
Up the question.... Is it possible?