: I've been digging around in multicore and I am curious as to how to force a : reload of the sharedLib classloader. I can reload a given core, which : instantiates a new SolrResourceLoader for that core, but I want to be able to : reload the classloader for the sharedLib.
that seems really dangerous to me ... you could wind up changing class impls out from under a core ... which could give you serious incompatibilities. The only safe way i can imagine doing this would be if we add a way to compeltely reinitialize the MultiCore (which would reload all the SolrCores) -Hoss