Bill Moseley wrote:
what would you recommend for caching the md5 strings.  Cache::Cache or
DBM?  I suppose a Cache::Cache file cache would be the easiest.
In order of speed:
IPC::MM
BerkeleyDB (with built-in locking)
Cache::Mmap
Cache::FileBackend (from Cache::Cache -- no need to use Cache::Cache front-end unless you want expiration)

IPC::MM is shared memory, so it won't persist data across restarts.

- Perrin




Reply via email to