in reply to Re: Re: Caching data with mod_perl
in thread Caching data with mod_perl

In general, you get better performance from disk-based solutions to sharing. I'm doing some benchmarking right now, and so far MLDBM::Sync (using SDBM_File) and Cache::Mmap are beating the pants off modules that use shared memory. The only exception to this is IPC::MM which has phenomenal performance.

Replies are listed 'Best First'.
Re: Re: Re: Re: Caching data with mod_perl
by caedes (Pilgrim) on Jul 15, 2002 at 04:07 UTC
    Really? That seems pretty counter-intuitive. I'll have to check these out.

    -caedes