Class: Sunspot::FulltextField
Overview
FulltextField instances represent fields that are indexed as fulltext. These fields are tokenized in the index, and can have boost applied to them. They also always allow multiple values (since the only downside of allowing multiple values is that it prevents the field from being sortable, and sorting on tokenized fields is nonsensical anyway, there is no reason to do otherwise). FulltextField instances always have the type TextType.
Instance Attribute Summary collapse
-
#default_boost ⇒ Object
readonly
:nodoc:.
Attributes inherited from Field
#boost, #name, #reference, #type
Instance Method Summary collapse
- #indexed_name ⇒ Object
-
#initialize(name, options = {}) ⇒ FulltextField
constructor
A new instance of FulltextField.
Methods inherited from Field
#cast, #eql?, #hash, #more_like_this?, #multiple?, #to_indexed
Constructor Details
#initialize(name, options = {}) ⇒ FulltextField
Returns a new instance of FulltextField.
127 128 129 130 131 132 133 |
# File 'lib/sunspot/field.rb', line 127 def initialize(name, = {}) super(name, Type::TextType.instance, ) @multiple = true @boost = .delete(:boost) @default_boost = .delete(:default_boost) raise ArgumentError, "Unknown field option #{.keys.first.inspect} provided for field #{name.inspect}" unless .empty? end |
Instance Attribute Details
#default_boost ⇒ Object (readonly)
:nodoc:
125 126 127 |
# File 'lib/sunspot/field.rb', line 125 def default_boost @default_boost end |
Instance Method Details
#indexed_name ⇒ Object
135 136 137 |
# File 'lib/sunspot/field.rb', line 135 def indexed_name "#{super}" end |