changed example solrconfig.xml to default to lazy field loading

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@542300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mike Klaas 2007-05-28 19:13:36 +00:00
parent 5680b9436b
commit 6de7d1dbbc
1 changed files with 5 additions and 1 deletions

View File

@ -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().