I tried disabling the documentCache but still the same issue. <documentCache class="solr.LRUCache" size="0" initialSize="0" autowarmCount="0"/>
-----Original Message----- From: Koji Sekiguchi [mailto:k...@r.email.ne.jp] Sent: Monday, April 20, 2009 4:38 PM To: solr-user@lucene.apache.org Subject: Re: OutofMemory on Highlightling 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