> > > What I'm also curious about is how searchers are handled in a multi-core > > environment. Does the maxWarmSearchers argument apply to the entire set > of > > cores, or to each individual core? > > > It applied to one core unless ofcourse, you are sharing the solrconfig.xml > with multiple cores. Also, if you call core reload, a new core is created > (with its own searcher) which replaces the old core. > > Thanks very much for your time and explanation, it is a huge help. Just to clarify that I am understanding correctly...
For example then, if I have 10 cores, and maxWarmSearchers is 2 for each core, if I send a commit to all of them at once this will not cause any exceptions, because each core handles its searchers separately? Mark