reduced solr cache sizes to check if that solves memory problems a bit

pull/1/head
orbiter 13 years ago
parent 6f01542aaa
commit db6863db77

@ -450,8 +450,8 @@
and old cache. and old cache.
--> -->
<filterCache class="solr.FastLRUCache" <filterCache class="solr.FastLRUCache"
size="512" size="100"
initialSize="512" initialSize="10"
autowarmCount="0"/> autowarmCount="0"/>
<!-- Query Result Cache <!-- Query Result Cache
@ -460,9 +460,9 @@
(DocList) based on a query, a sort, and the range of documents (DocList) based on a query, a sort, and the range of documents
requested. requested.
--> -->
<queryResultCache class="solr.LRUCache" <queryResultCache class="solr.FastLRUCache"
size="512" size="100"
initialSize="512" initialSize="10"
autowarmCount="0"/> autowarmCount="0"/>
<!-- Document Cache <!-- Document Cache
@ -471,9 +471,9 @@
document). Since Lucene internal document ids are transient, document). Since Lucene internal document ids are transient,
this cache will not be autowarmed. this cache will not be autowarmed.
--> -->
<documentCache class="solr.LRUCache" <documentCache class="solr.FastLRUCache"
size="512" size="100"
initialSize="512" initialSize="10"
autowarmCount="0"/> autowarmCount="0"/>
<!-- Field Value Cache <!-- Field Value Cache
@ -482,12 +482,12 @@
by document id. The fieldValueCache is created by default by document id. The fieldValueCache is created by default
even if not configured here. even if not configured here.
--> -->
<!--
<fieldValueCache class="solr.FastLRUCache" <fieldValueCache class="solr.FastLRUCache"
size="512" size="100"
autowarmCount="128" autowarmCount="0"
showItems="32" /> showItems="32" />
-->
<!-- Custom Cache <!-- Custom Cache

Loading…
Cancel
Save