Re: Dynamic RequestHandler loading

2007-03-06 Thread Chris Hostetter
: getRequestHandlers() would be equivolent to: : getRequestHandlers( SolrRequestHandler.class ) : : We will need some way to ask what is registered without knowing the : path it is registered to. getting instances by class seems like a pretty special case situation ... i'd rather not add a bunch

Re: Dynamic RequestHandler loading

2007-03-05 Thread Ryan McKinley
> > // get all the registered handlers by class > Collection getRequestHandlers( Class SolrRequestHandler> clazz ); By class? What's that for? It was useful to check what else is configured. The alternative is to have a Collection getRequestHandlers() and have let the client sort out wha

Re: Dynamic RequestHandler loading

2007-03-05 Thread Yonik Seeley
On 3/5/07, Ryan McKinley <[EMAIL PROTECTED]> wrote: I know I'm pushing solr to do things it was never designed to do, so shut me up quick if this is not where you want things to go - I could quietly implement this with quick hacks, but i'd rather not... Currently SolrCore loads all the request h

Dynamic RequestHandler loading

2007-03-05 Thread Ryan McKinley
I know I'm pushing solr to do things it was never designed to do, so shut me up quick if this is not where you want things to go - I could quietly implement this with quick hacks, but i'd rather not... Currently SolrCore loads all the request handlers in a final variable as the instance is initia