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