that's fine. thank you.
On Fri, Mar 23, 2012 at 7:30 PM, Martijn v Groningen <
martijn.v.gronin...@gmail.com> wrote:
> Hi,
>
> There is an example usage in the package.html.
> Something to keep in mind is that this search time join is different than
> block join query. The JoinUtil can be used to
Hi,
There is an example usage in the package.html.
Something to keep in mind is that this search time join is different than
block join query. The JoinUtil can be used to do join filtering and the
block join is more meant for parent / child search.
Martijn
On 23 March 2012 11:58, Li Li wrote:
thank you. is there any the search time join example?
I can only find a JoinUtil in package org.apache.lucene.search.join and a
TestJoinUtil in test package.
On Fri, Mar 23, 2012 at 6:24 PM, Michael McCandless <
luc...@mikemccandless.com> wrote:
> I think you're hitting the exception because you
I think you're hitting the exception because you passed
trackScores=true to ToParentBlockJoinCollector. If you do that, the
ScoreMode cannot be None... I'll update the javadocs to make this
clear, and I'll also fix the exception message.
I think you're hitting the infinite loop because your paren
hi all,
I read these two articles
http://blog.mikemccandless.com/2012/01/searching-relational-content-with.html,
http://blog.mikemccandless.com/2012/01/tochildblockjoinquery-in-lucene.htmland
wrote a test program. But it seems there is some problem. it ends with
endless loop.
Here is my pro