Class: Couchbase::Options::Search
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Cluster#search_query
Instance Attribute Summary collapse
- #collections ⇒ Array<String>?
- #disable_scoring ⇒ Boolean
- #explain ⇒ Boolean
- #facets ⇒ Hash<String => Cluster::SearchFacet>
- #fields ⇒ Array<String>
- #highlight_fields ⇒ Array<String>
- #highlight_style ⇒ Symbol
- #include_locations ⇒ Boolean
- #limit ⇒ Integer
-
#scan_consistency ⇒ void
writeonly
Customizes the consistency guarantees for this query.
- #skip ⇒ Integer
- #sort ⇒ Array<String, Cluster::SearchSort>
- #transcoder ⇒ JsonTranscoder, #decode(String)
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#consistent_with(mutation_state) ⇒ void
Sets the mutation tokens this query should be consistent with.
-
#initialize(limit: nil, skip: nil, explain: false, highlight_style: nil, highlight_fields: nil, fields: nil, mutation_state: nil, disable_scoring: false, include_locations: false, collections: nil, sort: nil, facets: nil, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Search
constructor
A new instance of Search.
Constructor Details
#initialize(limit: nil, skip: nil, explain: false, highlight_style: nil, highlight_fields: nil, fields: nil, mutation_state: nil, disable_scoring: false, include_locations: false, collections: nil, sort: nil, facets: nil, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Search
Returns a new instance of Search.
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 |
# File 'lib/couchbase/options.rb', line 2025 def initialize(limit: nil, skip: nil, explain: false, highlight_style: nil, highlight_fields: nil, fields: nil, mutation_state: nil, disable_scoring: false, include_locations: false, collections: nil, sort: nil, facets: nil, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span) @limit = limit @skip = skip @explain = explain @highlight_style = highlight_style @highlight_fields = highlight_fields @fields = fields @disable_scoring = disable_scoring @include_locations = include_locations @collections = collections @sort = sort @facets = facets @transcoder = transcoder @scan_consistency = :not_bounded @mutation_state = mutation_state yield self if block_given? end |
Instance Attribute Details
#collections ⇒ Array<String>?
1992 1993 1994 |
# File 'lib/couchbase/options.rb', line 1992 def collections @collections end |
#disable_scoring ⇒ Boolean
1990 1991 1992 |
# File 'lib/couchbase/options.rb', line 1990 def disable_scoring @disable_scoring end |
#explain ⇒ Boolean
1986 1987 1988 |
# File 'lib/couchbase/options.rb', line 1986 def explain @explain end |
#facets ⇒ Hash<String => Cluster::SearchFacet>
1994 1995 1996 |
# File 'lib/couchbase/options.rb', line 1994 def facets @facets end |
#fields ⇒ Array<String>
1989 1990 1991 |
# File 'lib/couchbase/options.rb', line 1989 def fields @fields end |
#highlight_fields ⇒ Array<String>
1988 1989 1990 |
# File 'lib/couchbase/options.rb', line 1988 def highlight_fields @highlight_fields end |
#highlight_style ⇒ Symbol
1987 1988 1989 |
# File 'lib/couchbase/options.rb', line 1987 def highlight_style @highlight_style end |
#include_locations ⇒ Boolean
1991 1992 1993 |
# File 'lib/couchbase/options.rb', line 1991 def include_locations @include_locations end |
#limit ⇒ Integer
1984 1985 1986 |
# File 'lib/couchbase/options.rb', line 1984 def limit @limit end |
#scan_consistency=(level) ⇒ void
Note:
overrides consistency level set by #consistent_with
This method returns an undefined value.
Customizes the consistency guarantees for this query
2080 2081 2082 2083 |
# File 'lib/couchbase/options.rb', line 2080 def scan_consistency=(level) @mutation_state = nil if @mutation_state @scan_consistency = level end |
#skip ⇒ Integer
1985 1986 1987 |
# File 'lib/couchbase/options.rb', line 1985 def skip @skip end |
#sort ⇒ Array<String, Cluster::SearchSort>
1993 1994 1995 |
# File 'lib/couchbase/options.rb', line 1993 def sort @sort end |
#transcoder ⇒ JsonTranscoder, #decode(String)
1995 1996 1997 |
# File 'lib/couchbase/options.rb', line 1995 def transcoder @transcoder end |
Instance Method Details
#consistent_with(mutation_state) ⇒ void
Note:
overrides consistency level set by #scan_consistency=
This method returns an undefined value.
Sets the mutation tokens this query should be consistent with
2067 2068 2069 2070 |
# File 'lib/couchbase/options.rb', line 2067 def consistent_with(mutation_state) @scan_consistency = nil if @scan_consistency @mutation_state = mutation_state end |