Limitations of 'ToChildBlockJoinQuery' fixed in Lucene!
In
my last
post I described a known limitation
of BlockJoinQuery: it joins in only one direction (from
child to parent documents). This can be a problem because some
applications need to join in reverse (from parent to child documents)
instead.
This is now fixed! I just committed a new query, ToChildBlockJoinQuery, to perform the join in the opposite direction. I also renamed the previous query to ToParentBlockJoinQuery.
You use it just like BlockJoinQuery, except in reverse: it wraps any other Query matching parent documents and translates it into a Query matching child documents. The resulting Query can then be combined with other queries against fields in the child documents, and you can then sort by child fields as well.
Using songs and albums as an example: imagine you index each song (child) and album (parent) as separate documents in a single document block. With ToChildBlockJoinQuery, you can now run queries like:
ToChildBlockJoinQuery will be available in Lucene 3.6.0 and 4.0.
Source: http://blog.mikemccandless.com/2012/01/tochildblockjoinquery-in-lucene.html
Published at DZone with permission of Michael Mccandless, author and DZone MVB.This is now fixed! I just committed a new query, ToChildBlockJoinQuery, to perform the join in the opposite direction. I also renamed the previous query to ToParentBlockJoinQuery.
You use it just like BlockJoinQuery, except in reverse: it wraps any other Query matching parent documents and translates it into a Query matching child documents. The resulting Query can then be combined with other queries against fields in the child documents, and you can then sort by child fields as well.
Using songs and albums as an example: imagine you index each song (child) and album (parent) as separate documents in a single document block. With ToChildBlockJoinQuery, you can now run queries like:
albumName:thunder AND songName:numbor
albumName:thunder, sort by songTitleAny query with constraints against album and/or song fields will work, and the returned hits will be individual songs (not grouped).
ToChildBlockJoinQuery will be available in Lucene 3.6.0 and 4.0.
Source: http://blog.mikemccandless.com/2012/01/tochildblockjoinquery-in-lucene.html
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





