Re: [SMARTY] URL query driven cache groups

Monte Ohrt <[email protected]>
Newsgroups gmane.comp.php.smarty.general
Message-ID <[email protected]>
That would be a function/behavior of your application. You could extend 
Smarty and make a custom display() function that does these tests then 
calls the parent display() function accordingly.

Erik Schmitt wrote:

>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
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.