XInclude works fine but that's not what your looking for i guess. Having the 100 top queries is overkill anyway and it can take too long for a new searcher to warmup.
Depending on the type of requests, i usually tend to limit warming to popular filter queries only as they generate a very high hit ratio at make caching useful [1]. If there are very popular user entered queries having a high initial latency, i'd have them warmed up as well. [1]: http://wiki.apache.org/solr/SolrCaching#Tradeoffs > Warning: I haven't used this personally, but Xinclude looks like what > you're after, see: http://wiki.apache.org/solr/SolrConfigXml#XInclude > > > > Best > Erick > > On Tue, Dec 7, 2010 at 6:33 PM, Mark <static.void....@gmail.com> wrote: > > Is there any plugin or easy way to auto-warm/cache a new searcher with a > > bunch of searches read from a file? I know this can be accomplished using > > the EventListeners (newSearcher, firstSearcher) but I rather not add 100+ > > queries to my solrconfig.xml. > > > > If there is no hook/listener available, is there some sort of Handler > > that performs this sort of function? Thanks!