: When I first search one word in solr . its response time is 460ms. When : I search the same word the second time. its response time is under 70ms. : I can't tolerate 460ms . Does anyone know how to improve performance?
tell us more about the query itself -- what params did you use? did you sort? did you facet? (the only info you've given us so far is what defaults you configured in your handler, but not what params you used at query time) : and my search configuration : <str name="defType">dismax</str> : <str name="qf">filename^5.0 text^1.5</str> : : : <str name="q.alt">*:*</str> : <str name="hl">on</str> : <str name="hl.fl">filename text</str> : <bool name="hl.useFastVectorHighlighter">true</bool> : <str name="hl.tag.pre"><![CDATA[<b style="color:red">]]></str> : <str name="hl.tag.post"><![CDATA[</b>]]></str> : <int name="hl.fragsize">100</int> : <str name="f.filename.hl.alternateField">filename</str> : <int name="f.text.hl.snippets">3</int> -Hoss