[SMARTY] URL query driven cache groups
Erik Schmitt <[email protected]>
| Newsgroups | gmane.comp.php.smarty.general |
|---|---|
| Organization | e-novum GmbH |
| Message-ID | <[email protected]> |
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
--
Smarty General Mailing List (http://smarty.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php