Sha256: e178f09f62e20b6371b065b79eb29a05f142d622f0511722043301772ff9d4ab
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
# encoding: utf-8 # module Tokenizers # There are a few class methods that you can use to configure how a query works. # # removes_characters regexp # illegal_after_normalizing regexp # stopwords regexp # contracts_expressions regexp, to_string # splits_text_on regexp # normalizes_words [[/regexp1/, 'replacement1'], [/regexp2/, 'replacement2']] # class Query < Base def self.default= new_default @default = new_default end def self.default @default ||= new end attr_reader :maximum_tokens def initialize options = {} super options @maximum_tokens = options[:maximum_tokens] || 5 end # Let each token process itself. # Reject, limit, and partialize tokens. # # In querying we work with real tokens (in indexing it's just symbols). # def process tokens tokens.reject # Reject any tokens that don't meet criteria. tokens.cap maximum_tokens # Cut off superfluous tokens. tokens.partialize_last # Set certain tokens as partial. tokens end # Converts words into real tokens. # def tokens_for words ::Query::Tokens.processed words, downcase? end # Returns a tokens object. # def empty_tokens ::Query::Tokens.new end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
picky-2.7.0 | lib/picky/tokenizers/query.rb |
picky-2.6.0 | lib/picky/tokenizers/query.rb |