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 kl...@apache.org on 2007/05/28 21:13:37 UTC

svn commit: r542300 - /lucene/solr/trunk/example/solr/conf/solrconfig.xml

Author: klaas
Date: Mon May 28 12:13:36 2007
New Revision: 542300

URL: http://svn.apache.org/viewvc?view=rev&rev=542300
Log:
changed example solrconfig.xml to default to lazy field loading

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

Modified: lucene/solr/trunk/example/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/solrconfig.xml?view=diff&rev=542300&r1=542299&r2=542300
==============================================================================
--- lucene/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/example/solr/conf/solrconfig.xml Mon May 28 12:13:36 2007
@@ -147,8 +147,12 @@
       autowarmCount="0"/>
 
     <!-- If true, stored fields that are not requested will be loaded lazily.
+
+    This can result in a significant speed improvement if the usual case is to
+    not load all stored fields, especially if the skipped fields are large compressed
+    text fields.
     -->
-    <enableLazyFieldLoading>false</enableLazyFieldLoading>
+    <enableLazyFieldLoading>true</enableLazyFieldLoading>
 
     <!-- Example of a generic cache.  These caches may be accessed by name
          through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().