|
Posted by Erik Schmitt on 09/30/24 11:29
Hello,
I want to define cache groups by a function that analyses the
URL query. Some pages are to be cached but some are not.
Example:
page=user.home -> YES, cache it, it's static
page=search.results -> NO, it delivers dynamic content
My idea is to use a smarty-attribute that tells smarty
whether to cache the current page or not.
Example:
$m_cacheId = getCacheId();
$m_smarty->display('index.tpl', $m_cacheId);
.... and inside smarty:
if($m_cacheId == $smarty.NO_CACHE)
.... do not cache
else
.... cache with respect to $m_cacheId (say "a|b|c")
Would this be an interesting feature for smarty in general?
At the moment this sounds promising to me.
Has anyone tried something like this?
- Erik
Navigation:
[Reply to this message]
|