in reply to Re^2: How best to optimize shared data
in thread How best to optimize shared data

I was about to recommend looking at Cache::SharedMemoryCache. And then I read it. It says to use a filesystem cache because the speed difference is trivial. Which tells me that simply bumping up your buffers for your database may solve your speed problems. Instead of throwing memory at a shared memory cache, throw that memory at the database, and see if that helps.

Replies are listed 'Best First'.
Re^4: How best to optimize shared data
by perrin (Chancellor) on Feb 04, 2005 at 19:48 UTC
    That's just a particularly slow cache module. Most of them are slow, but the ones I mentioned farther down this thread are fast.