Class: Couchbase::Cluster::SearchQuery::RegexpQuery

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

Finds documents containing terms that match the specified regular expression.

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(regexp) {|self| ... } ⇒ RegexpQuery

Returns a new instance of RegexpQuery.

Parameters:

  • regexp (String)

Yield Parameters:

[View source]

138
139
140
141
142
# File 'lib/couchbase/search_options.rb', line 138

def initialize(regexp)
  super()
  @regexp = regexp
  yield self if block_given?
end

Instance Attribute Details

#boostFloat

Returns:

  • (Float)

127
128
129
# File 'lib/couchbase/search_options.rb', line 127

def boost
  @boost
end

#fieldString

Returns:

  • (String)

133
134
135
# File 'lib/couchbase/search_options.rb', line 133

def field
  @field
end

#operatornil, ...

Returns:

  • (nil, :or, :and)

130
131
132
# File 'lib/couchbase/search_options.rb', line 130

def operator
  @operator
end

Instance Method Details

#to_json(*args) ⇒ String

Returns:

  • (String)
[View source]

145
146
147
148
149
150
151
# File 'lib/couchbase/search_options.rb', line 145

def to_json(*args)
  data = {"regexp" => @regexp}
  data["boost"] = boost if boost
  data["operator"] = operator.to_s if operator
  data["field"] = field if field
  data.to_json(*args)
end