[Zope] How do zope objects cached?

Dieter Maurer dieter@handshake.de
Fri, 5 Jul 2002 23:02:37 +0200


alwyn@smart.com.ph writes:
 > Do zope load and interpret methods every time a hit occurs or does it cache
 > the code/object
 > somewhere?
The method code is cached (depending on object type even persistent).

The methods result is usually not cached. But you can use one of
Zope's cache manager to change this...


Dieter