Project

General

Profile

Actions

LuceneNotes » History » Revision 8

« Previous | Revision 8/13 (diff) | Next »
Andreas Kohlbecker, 09/23/2013 12:08 PM


Various notes and links on Lucene

Joins in Lucene

joins using BlockJoinQuery

joins using the JoinUtil

is slower than BlockJoinQuery but seems more flexible and does not require special indexing

Filters

General rules

  • I you are using multiple filters, place these filters inside of a Boolean Filter. The Boolean Filter internally benefits from the BitSets produced by Filters.

  • Your “heaviest” filter should always be placed last – typically Geo filters since they can perform some heavy computations to determine distance.

Links to docs

Updated by Andreas Kohlbecker over 10 years ago · 8 revisions