Class: Couchbase::Cluster::SearchQuery::RegexpQuery
Overview
Finds documents containing terms that match the specified regular expression.
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(regexp) {|self| ... } ⇒ RegexpQuery
Returns a new instance of RegexpQuery.
[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
#boost ⇒ Float
127
128
129
|
# File 'lib/couchbase/search_options.rb', line 127
def boost
@boost
end
|
#field ⇒ String
133
134
135
|
# File 'lib/couchbase/search_options.rb', line 133
def field
@field
end
|
#operator ⇒ nil, ...
130
131
132
|
# File 'lib/couchbase/search_options.rb', line 130
def operator
@operator
end
|
Instance Method Details
#to_json(*args) ⇒ 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
|