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

Constructor Details

#initialize(regexp) {|self| ... } ⇒ RegexpQuery

Returns a new instance of RegexpQuery.

Parameters:

  • regexp (String)

Yield Parameters:

[View source]

141
142
143
144
145
# File 'lib/couchbase/search_options.rb', line 141

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

Instance Attribute Details

#boostFloat

Returns:

  • (Float)

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

def boost
  @boost
end

#fieldString

Returns:

  • (String)

136
137
138
# File 'lib/couchbase/search_options.rb', line 136

def field
  @field
end

Instance Method Details

#to_hHash<Symbol, #to_json>

Returns:

[View source]

148
149
150
151
152
153
# File 'lib/couchbase/search_options.rb', line 148

def to_h
  data = {:regexp => @regexp}
  data[:boost] = boost if boost
  data[:field] = field if field
  data
end