Hi,
I am a new to solr/lucene.
I am trying to do a text analysis on my index. The below error
(screenshot) is shown when I increase the field value length. I have tried
searching in vain for any length specific restrictions in solr.TextField.
There is no error text/exception thrown.
[image: Inline images 1]
The field is below
<field name="text" type="text_general" stored="true" indexed="true" />
fieldtype is
<fieldType name="text_general" class="solr.TextField"
positionIncrementGap="100">
<analyzer type="index">
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" enablePositionIncrements="true" />
<filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
<analyzer type="query">
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" enablePositionIncrements="true" />
<filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt"
ignoreCase="true" expand="true"/>
<filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
</fieldType>
Any help much appreciated.
Thanks
Umapathy