Re: [htmltmpl] HTML::Template: Installation Problem on Darwin/Mac OS X
Brought to you by:
samtregar
From: Cees H. <ce...@si...> - 2005-02-26 17:57:53
|
Sam Tregar wrote: > The best workaround is to just switch to the file_cache. In most > cases it's just as fast as shared_cache due to the OS caching file > access and it's a heck of a lot easier to work with (no arbitrary > limits, no need for special tools to clear the cache, etc). I would seconds Sam's suggestion here. The shared memory caches are not really worth the trouble, and are actually surprisingly slow. If it is absolutely necesary for the cache to be in memory then setup an in-memory filesystem (not sure how to do that on OSX). However, it is often best to just let the OS handle the file system caching directly. The OS is very efficient at keeping the most often accessed files in memory for quick access. Cheers, Cees |