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
I (will) have a lot of relatively small templates, e.g.:
{% for evt in evts %}
# {{ evt.title }}
{{ evt.description }}
{% endfor %}
However many different values will be supplied.
I read: https://github.com/sebastienros/fluid#caching
And i could save the TemplateContext however it would be called asynchonoulsy multiple times,
This seems like it will be an issue with a single instance of TemplateContext given different values.
Is my assumption right and do you have any performance tips regarding my use-case?
The text was updated successfully, but these errors were encountered:
Hi,
I (will) have a lot of relatively small templates, e.g.:
However many different values will be supplied.
I read: https://github.com/sebastienros/fluid#caching
And i could save the
TemplateContext
however it would be called asynchonoulsy multiple times,This seems like it will be an issue with a single instance of
TemplateContext
given different values.Is my assumption right and do you have any performance tips regarding my use-case?
The text was updated successfully, but these errors were encountered: