| Plucene documentation | Contained in the Plucene distribution. |
Plucene::Search::Filter - A search filter base class
This doesn't seem to be being used just yet. But here is some info on filters:
Filtering means imposing additional restriction on the hit list to eliminate hits that otherwise would be included in the search results.
There are two ways to filter hits:
This must be defined in a subclass
| Plucene documentation | Contained in the Plucene distribution. |
package Plucene::Search::Filter;
use strict; use warnings;
sub bits { die "bits must be defined in a subclass" } 1;