On 16-Jan-08, at 11:15 AM, [EMAIL PROTECTED] wrote:
I'm using Tomcat. I set Max Size = 5Gb and I checked in profiler
that it's actually uses whole memory. There is no significant
memory use by other applications.
Whole change was I increased the size of cache to:
LRU Cache(maxSize=1048576, initialSize=1048576,
autowarmCount=524288,
[EMAIL PROTECTED])
autowarmcount > maxSize certainly doesn't make sense.
I know this is a lot and I'm going to decrease it, I was just
experimenting, but I need some guidelines of how to calculate the
right size of the cache.
Each filter that matches more than ~3000 documents will occupy
maxDocs/8 bytes of memory. Certain kinds of faceting require one
entry per unique value in a field. The best way to tune this is to
monitor your cache hit/expunge statistics for the filter cache (on
the solr admin statistics screen).
-Mike