Re: Warming up a Searcher

2006-11-02 Thread Yonik Seeley
SolrCore.getSearcher() and registerSearcher() work together to do do warming. If you want to try and rip that out of solr, remove any calls having to do with autowarming (warming new caches from most-recently-used items in old caches), and replace the static warming queries (defined in an external

Re: Warming up a Searcher

2006-11-02 Thread Simon Willnauer
I can't point out the actual position in solr but I bet if you spend 10 min looking into the solr source you will find a nice example how to warm up a searcher. regards simon On 11/2/06, Aigner, Thomas <[EMAIL PROTECTED]> wrote: I have seen numerous posts on warming up a search

Warming up a Searcher

2006-11-02 Thread Aigner, Thomas
I have seen numerous posts on warming up a searcher, but was wondering if someone could post their code that would spin off another thread to warm up a searcher, then switch to the new one when it is warmed up? - To