in reply to Re: Improving performance by generating a static html file?
in thread Improving performance by generating a static html file?

This is where you look at a performance analysis of the item. It depends on your your caching scheme and the nature of your data. There are a few basic principles behind a cache mechanism that you need to take note of (this is midly off topic). Keep in mind always that a cache is the epitome of the classical space/time tradeoff. With that in mind:

Those reflections should be able to answer your questions for yourself. If you're looking into perl modules: Or you can roll your own solution taylored to meet your needs. Have fun with the project

    --jb
  • Comment on Re: Re: Improving performance by generating a static html file?

Replies are listed 'Best First'.
Caching modules
by lachoy (Parson) on Apr 12, 2002 at 03:15 UTC

    The Cache::FileCache (part of the Cache::Cache family) module is worth looking into as well. Most modern filesystems have very efficient algorithms for keeping MRU data in memory, making it very speedy and simple to boot. (IME shared memory isn't worth the effort.)

    Chris
    M-x auto-bs-mode