Class: Couchbase::SearchQuery::PrefixQuery
- Inherits:
-
SearchQuery
- Object
- SearchQuery
- Couchbase::SearchQuery::PrefixQuery
- Defined in:
- lib/couchbase/search_options.rb
Overview
The prefix query finds documents containing terms that start with the provided prefix. Usual better alternative is MatchQuery.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(prefix) {|self| ... } ⇒ PrefixQuery
constructor
A new instance of PrefixQuery.
- #to_h ⇒ Hash<Symbol, #to_json>
Constructor Details
#initialize(prefix) {|self| ... } ⇒ PrefixQuery
Returns a new instance of PrefixQuery.
951 952 953 954 955 |
# File 'lib/couchbase/search_options.rb', line 951 def initialize(prefix) super() @prefix = prefix yield self if block_given? end |
Instance Attribute Details
#boost ⇒ Float
940 941 942 |
# File 'lib/couchbase/search_options.rb', line 940 def boost @boost end |
#field ⇒ String
946 947 948 |
# File 'lib/couchbase/search_options.rb', line 946 def field @field end |
#operator ⇒ nil, ...
943 944 945 |
# File 'lib/couchbase/search_options.rb', line 943 def operator @operator end |
Instance Method Details
#to_h ⇒ Hash<Symbol, #to_json>
958 959 960 961 962 963 |
# File 'lib/couchbase/search_options.rb', line 958 def to_h data = {:prefix => @prefix} data[:boost] = boost if boost data[:field] = field if field data end |