Creating a custom filter
Now that we've seen numerous examples on Lucene's built-in Filters, we are ready for a more advanced topic, custom filters. There are a few important components we need to go over before we start: FieldCache
, SortedDocValues
, and DocIdSet
. We will be using these items in our example to help you gain practical knowledge on the subject.
In the FieldCache
, as you already learned, is a cache that stores field values in memory in an array structure. It's a very simple data structure as the slots in the array basically correspond to DocIds. This is also the reason why FieldCache
only works for a single-valued field. A slot in an array can only hold a single value. Since this is just an array, the lookup time is constant and very ...
Get Lucene 4 Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.