[Zope] RAMCacheManager Vs Cache manager in control panel

Dieter Maurer dieter@handshake.de
Fri, 13 Sep 2002 20:13:40 +0200


=?iso-8859-1?Q?Lea_Smith?= writes:
 > What is the difference between the cache settings in
 > the control_panel compared to creating a
 > RAMCachemanager for a specific site.
The cache settings in "Control_panel --> Database management"
control the cache between Zope's ZODB and its storage (on file).
It caches Python objects and decreases the amount of reading from 
the ZODB storage.

The RAMCache caches rendering results. It decreases the amount
of rendering (i.e. calling of templates/scripts) ...

There is little interaction between the two caches.


Dieter