Class: Couchbase::Cluster::SearchQuery::WildcardQuery

Inherits:
Couchbase::Cluster::SearchQuery show all
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

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, wildcard

Constructor Details

#initialize(wildcard) {|self| ... } ⇒ WildcardQuery

Returns a new instance of WildcardQuery.

Parameters:

  • wildcard (String)

Yield Parameters:

[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

#boostFloat

Returns:

  • (Float)

203
204
205
# File 'lib/couchbase/search_options.rb', line 203

def boost
  @boost
end

#fieldString

Returns:

  • (String)

209
210
211
# File 'lib/couchbase/search_options.rb', line 209

def field
  @field
end

#operatornil, ...

Returns:

  • (nil, :or, :and)

206
207
208
# File 'lib/couchbase/search_options.rb', line 206

def operator
  @operator
end

Instance Method Details

#to_json(*args) ⇒ String

Returns:

  • (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