mirror of https://github.com/apache/lucene.git
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:
parent
5680b9436b
commit
6de7d1dbbc
|
@ -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().
|
||||
|
|
Loading…
Reference in New Issue