Re: Lucene 5.2.0 global ordinal based query time join on multiple indexes

2015-07-30 Thread Martijn v Groningen
Hi Alex, I never took joining based on multiple indices into account when creating the global ordinal join. I like your idea of using a multi reader to make the join think it is running on one index. But I don't know if there are edge cases where this might not work. Martijn On 21 July 2015 at 2

Re: Lucene 5.2.0 global ordinal based query time join on multiple indexes

2015-07-21 Thread Alex Pang
Seems if I create a MultiReader from my index searchers and create the ordinal map from that MultiReader (and use an IndexSearcher created from the MultiReader in the createJoinQuery), then the correct results are found. On Mon, Jul 20, 2015 at 5:48 PM, Alex Pang wrote: > Hi, > > > > Does the G