Class: Couchbase::Cluster::SearchQuery::WildcardQuery
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
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, wildcard
Constructor Details
#initialize(wildcard) {|self| ... } ⇒ WildcardQuery
Returns a new instance of WildcardQuery.
[View source]
214
215
216
217
218
|
# File 'lib/couchbase/search_options.rb', line 214
def initialize(wildcard)
super()
@wildcard = wildcard
yield self if block_given?
end
|
Instance Attribute Details
#boost ⇒ Float
203
204
205
|
# File 'lib/couchbase/search_options.rb', line 203
def boost
@boost
end
|
#field ⇒ String
209
210
211
|
# File 'lib/couchbase/search_options.rb', line 209
def field
@field
end
|
#operator ⇒ nil, ...
206
207
208
|
# File 'lib/couchbase/search_options.rb', line 206
def operator
@operator
end
|
Instance Method Details
#to_json(*args) ⇒ String
[View source]
221
222
223
224
225
226
227
|
# File 'lib/couchbase/search_options.rb', line 221
def to_json(*args)
data = {"wildcard" => @wildcard}
data["boost"] = boost if boost
data["operator"] = operator.to_s if operator
data["field"] = field if field
data.to_json(*args)
end
|