You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2006/09/19 16:05:35 UTC

svn commit: r447850 - /incubator/solr/trunk/example/solr/conf/solrconfig.xml

Author: yonik
Date: Tue Sep 19 07:05:35 2006
New Revision: 447850

URL: http://svn.apache.org/viewvc?view=rev&rev=447850
Log:
more docs for cache params

Modified:
    incubator/solr/trunk/example/solr/conf/solrconfig.xml

Modified: incubator/solr/trunk/example/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/example/solr/conf/solrconfig.xml?view=diff&rev=447850&r1=447849&r2=447850
==============================================================================
--- incubator/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ incubator/solr/trunk/example/solr/conf/solrconfig.xml Tue Sep 19 07:05:35 2006
@@ -78,7 +78,15 @@
          When a new searcher is opened, its caches may be prepopulated
          or "autowarmed" using data from caches in the old searcher.
          autowarmCount is the number of items to prepopulate.  For LRUCache,
-         the autowarmed items will be the most recently accessed items.  -->
+         the autowarmed items will be the most recently accessed items.
+       Parameters:
+         class - the SolrCache implementation (currently only LRUCache)
+         size - the maximum number of entries in the cache
+         initialSize - the initial capacity (number of entries) of
+           the cache.  (seel java.util.HashMap)
+         autowarmCount - the number of entries to prepopulate from
+           and old cache.
+         -->
     <filterCache
       class="solr.LRUCache"
       size="512"