Re: RequestProcessor with IndexSearcher for Different Core

2015-10-19 Thread Kilian Woods
Hi Mikhail, Thank you very much, that looks very helpful indeed. Kilian. On 19 October 2015 at 15:48, Mikhail Khludnev wrote: > Assuming you need to access sibling core from UpdateRequestHandler you can > how it's done on cross core join > > https://github.com/apache/lucene-solr/blob/trunk/sol

Re: RequestProcessor with IndexSearcher for Different Core

2015-10-19 Thread Mikhail Khludnev
Assuming you need to access sibling core from UpdateRequestHandler you can how it's done on cross core join https://github.com/apache/lucene-solr/blob/trunk/solr/core/src/java/org/apache/solr/search/join/ScoreJoinQParserPlugin.java#L256 don't forget to close all resources. On Mon, Oct 19, 2015 a

RequestProcessor with IndexSearcher for Different Core

2015-10-19 Thread Kilian Woods
Hi All, I am looking to solve a design problem of mine. I want to create a SolrIndexSearcher for a *different* core inside a RequestProcessor. I know how to create a SolrIndexSearcher from the SolrQueryRequest but I want to search a different core instead. I want to update the current document w