Class: Couchbase::Cluster::SearchQuery::WildcardQuery
- Inherits:
-
Couchbase::Cluster::SearchQuery
- Object
- Couchbase::Cluster::SearchQuery
- Couchbase::Cluster::SearchQuery::WildcardQuery
- Defined in:
- lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb more...
Overview
Interprets * and ? wildcards as found in a lot of applications, for an easy implementation of such a search feature.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(wildcard) {|self| ... } ⇒ WildcardQuery
constructor
A new instance of WildcardQuery.
- #to_h ⇒ Hash<Symbol, #to_json>
Methods inherited from Couchbase::Cluster::SearchQuery
boolean_field, booleans, conjuncts, date_range, disjuncts, doc_id, geo_bounding_box, geo_distance, geo_polygon, match, match_all, match_none, match_phrase, numeric_range, phrase, prefix, query_string, regexp, term, term_range, #to_json, wildcard
Constructor Details
#initialize(wildcard) {|self| ... } ⇒ WildcardQuery
Returns a new instance of WildcardQuery.
209 210 211 212 213 |
# File 'lib/couchbase/search_options.rb', line 209 def initialize(wildcard) super() @wildcard = wildcard yield self if block_given? end |
Instance Attribute Details
#boost ⇒ Float
201 202 203 |
# File 'lib/couchbase/search_options.rb', line 201 def boost @boost end |
#field ⇒ String
204 205 206 |
# File 'lib/couchbase/search_options.rb', line 204 def field @field end |
Instance Method Details
#to_h ⇒ Hash<Symbol, #to_json>
216 217 218 219 220 221 |
# File 'lib/couchbase/search_options.rb', line 216 def to_h data = {:wildcard => @wildcard} data[:boost] = boost if boost data[:field] = field if field data end |