[Zope] Cacheing

Evan Simpson evan@4-am.com
Tue, 14 Sep 1999 10:19:41 -0500


Rob Page wrote:

> Over time you learn that dtBigExpensivePage is, in fact, expensive to
> render.  Sooo, you might create a ZCache object in Folder foo called
> dtBigExpensivePage and move the DTML Method dtBigExpensivePage into the
> ZCache (a folderish thing) object dtBigExpensivePage.
>
> As a result, you'd be able to access
> http://machine.com/foo/dtBigExpensivePage and get the cached rendering
> and maybe access:
>
> http://machine.com/foo/dtBigExpensivePage/dtBigExpensivePage to get the
> uncached rendition.
>
> Of course, this lets you, over time and selectively build cached
> renditions of expensive objects...

That's basically what I was thinking, yes.