Gargate, Siddharth wrote:
Anybody facing the same issue? Following is my configuration ... <field name="content" type="text" indexed="true" stored="false" multiValued="true"/> <field name="teaser" type="text" indexed="false" stored="true"/> <copyField source="content" dest="teaser" maxChars="1000000" /> ...... <requestHandler name="standard" class="solr.SearchHandler" default="true"> <lst name="defaults"> <str name="echoParams">explicit</str><int name="rows">500</int><str name="hl">true</str> <str name="fl">id,score</str> <str name="hl.fl">teaser</str> <str name="hl.alternateField">teaser</str> <int name="hl.fragsize">200</int> <int name="hl.maxAlternateFieldLength">200</int> <int name="hl.maxAnalyzedChars">500</int> </lst> </requestHandler> ... Search works fine if I disable highlighting and it brings 500 results. But if I enable hightlighting and set the no. of rows to just 20 I get OOME.
How about switching documentCache off? Koji
