Forums / Developer / caching
Jean-Luc Chassaing
Tuesday 09 August 2011 6:38:21 am
Ok so I think that's a big question but I'm actually seeking for the best way to turn that.
Well let's go. On my website front page I have a ajax call that loads many things about user prefs. This call performs a big bunch of PHP script on the server. I would like to cache this.
The question comes here can I use the eZCache and if so how can I do it so that when cache is purged my cache files will also be purged.
Roman Hutterer
Tuesday 23 August 2011 6:42:18 am
hmm as i understand you want to use the cache mechanism of ez ?
if so why dont you parse a template file at your AJAX call ?then Exponential will have the control.
Gaetano Giunta
Tuesday 23 August 2011 7:15:52 am
Using a template for ajax responses is a good idea as long as the data you are showing is coming from a node - because you will benefit of view caching out of the box.
If the data is mixed (coming from different parts of the database), you have to do different things:
- if you are using a "proxy" node to display it, you will have to reset the view cache using the set-block template function to eg. only last five minutes
- if you are using a system template for a custom view of yours, you will need to use the cache-block template function instead, as there is no view cache in action
If otoh you want to manipulate caches in php code, you can look up how it is done eg. here: http://svn.projects.ez.no/ggsysinfo/modules/sysinfo/storagechurn.php. You also need to declare your cache in site.ini (eg: http://svn.projects.ez.no/ggsysinfo/settings/site.ini.append.php)
There should be a nice tutorial around from Bertrand Dunogier on this topic, but I cannot find it at the moment - maybe it's in some conference slide set...
Principal Consultant International Business Member of the Community Project Board
Jerome Despatis
Wednesday 24 August 2011 4:01:05 am
I'm also interested in this resource!