[Zope3-Users] Using RAMCache

2007-07-03 Thread Dominique Lederer
hi i would like to cache the results of method in a view, and thougt, that RAMCache could be of use here. After spending a lot of time searching for some documentation or examples, i came to this: from zope.app.cache.ram import RAMCache cache = RAMCache() query = cache.query('test',key={'x':1})

Re: [Zope3-Users] Using RAMCache

2007-07-03 Thread Thierry Florac
Le mardi 03 juillet 2007 à 13:47 +0200, Dominique Lederer a écrit : hi i would like to cache the results of method in a view, and thougt, that RAMCache could be of use here. After spending a lot of time searching for some documentation or examples, i came to this: from