Fix for SOLR-3565, removing maxFieldLength from example schema

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1352565 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erick Erickson 2012-06-21 15:16:09 +00:00
parent c4e4b36037
commit a112e601f1

View File

@ -121,8 +121,10 @@
Note: This replaces <indexDefaults> and <mainIndex> from older versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<indexConfig>
<!-- maxFieldLength specifies max number of *tokens* indexed per field. Default: 10000 -->
<!-- <maxFieldLength>10000</maxFieldLength> -->
<!-- maxFieldLength was removed in 4.0. To get similar behavior, include a
LimitTokenCountFilterFactory in your fieldType definition. E.g.
<filter class="solr.LimitTokenCountFilterFactory" maxTokenCount="10000"/>
-->
<!-- Maximum time to wait for a write lock (ms) for an IndexWriter. Default: 1000 -->
<!-- <writeLockTimeout>1000</writeLockTimeout> -->