Class: Ferret::Search::Filter

Inherits:
Object
  • Object
show all
Defined in:
lib/ferret/search/filter.rb

Overview

Abstract base class providing a mechanism to restrict searches to a subset of an index.

Direct Known Subclasses

CachingWrapperFilter, QueryFilter, RangeFilter

Instance Method Summary collapse

Instance Method Details

#bits(reader) ⇒ Object

Returns a BitSet with true for documents which should be permitted in search results, and false for those that should not.

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/ferret/search/filter.rb', line 7

def bits(reader)
  raise NotImplementedError
end