[Maypole] Maypole::Cache

Perrin Harkins perrin@elem.com
Tue, 06 Jul 2004 16:57:19 -0400


On Tue, 2004-07-06 at 12:37, Simon Cozens wrote:
> I've just uploaded this to CPAN. You'll like it.
> 
> Executive summary:
> 
>     package BeerDB;
>     use base 'Apache::MVC';
>     use Maypole::Cache; # Things go faster now

FYI, Cache::SharedMemoryCache is very slow.  Cache::FileCache is
typically more than twice as fast.  A fast caching module like
Cache::FastMmap, or something built on BerkeleyDB is typically about a
hundred times faster.

- Perrin