while indexing with SolrJ, I was able to find that, one of my data was impossible to index. Because the length of data(String) was more then 20000. with my googling, was used for the length(before Solr 4.x) and it is now used with . hence I just applied it to my Solr but still it is not working.
if anyone know, how to increase string length in Solr5. please give me your advices.
below sudo code is my part of Schema.
<field name ="description" type="text_general" indexed="true" stored="false" required="false" />
<fieldType name="text_general" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer class= " ..." />
<filter class= ".. " />
...
<filter class="solr.LimitTokenCountFilterFactory" maxToeknCount="100000" />
</analyzer>
<analyzer type ="query">
...
...
<filter class="solr.LimitTokenCountFilterFactory" maxToeknCount="100000" />