Class: Couchbase::Options::Query
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Cluster#query
Instance Attribute Summary collapse
- #adhoc ⇒ Boolean
- #client_context_id ⇒ String
- #flex_index ⇒ Boolean
- #max_parallelism ⇒ Integer
- #metrics ⇒ Boolean
- #pipeline_batch ⇒ Integer
- #pipeline_cap ⇒ Integer
- #preserve_expiry ⇒ Boolean
- #profile ⇒ Symbol
- #readonly ⇒ Boolean
- #scan_cap ⇒ Integer
- #scan_wait ⇒ Integer, #in_milliseconds
- #scope_qualifier ⇒ String
- #transcoder ⇒ JsonTranscoder, #decode(String)
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#consistent_with(mutation_state) ⇒ Object
Sets the mutation tokens this query should be consistent with.
-
#initialize(adhoc: true, client_context_id: nil, max_parallelism: nil, readonly: false, scan_wait: nil, scan_cap: nil, pipeline_cap: nil, pipeline_batch: nil, metrics: nil, profile: :off, flex_index: nil, preserve_expiry: nil, scope_qualifier: nil, scan_consistency: :not_bounded, mutation_state: nil, transcoder: JsonTranscoder.new, positional_parameters: nil, named_parameters: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Query
constructor
Creates new instance of options for Cluster#query.
-
#named_parameters(named) ⇒ Object
Sets named parameters for the query.
-
#positional_parameters(positional) ⇒ Object
Sets positional parameters for the query.
-
#raw(key, value) ⇒ Object
Allows providing custom JSON key/value pairs for advanced usage.
-
#scan_consistency=(level) ⇒ Object
Customizes the consistency guarantees for this query.
Constructor Details
#initialize(adhoc: true, client_context_id: nil, max_parallelism: nil, readonly: false, scan_wait: nil, scan_cap: nil, pipeline_cap: nil, pipeline_batch: nil, metrics: nil, profile: :off, flex_index: nil, preserve_expiry: nil, scope_qualifier: nil, scan_consistency: :not_bounded, mutation_state: nil, transcoder: JsonTranscoder.new, positional_parameters: nil, named_parameters: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Query
Either positional_parameters
or named_parameters
may be specified.
Creates new instance of options for Cluster#query
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 |
# File 'lib/couchbase/options.rb', line 1833 def initialize(adhoc: true, client_context_id: nil, max_parallelism: nil, readonly: false, scan_wait: nil, scan_cap: nil, pipeline_cap: nil, pipeline_batch: nil, metrics: nil, profile: :off, flex_index: nil, preserve_expiry: nil, scope_qualifier: nil, scan_consistency: :not_bounded, mutation_state: nil, transcoder: JsonTranscoder.new, positional_parameters: nil, named_parameters: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) raise ArgumentError, "Cannot pass positional and named parameters at the same time" if positional_parameters && named_parameters super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span) @adhoc = adhoc @client_context_id = client_context_id @max_parallelism = max_parallelism @readonly = readonly @scan_wait = scan_wait @scan_cap = scan_cap @pipeline_cap = pipeline_cap @pipeline_batch = pipeline_batch @metrics = metrics @profile = profile @flex_index = flex_index @preserve_expiry = preserve_expiry @scope_qualifier = scope_qualifier @scan_consistency = scan_consistency @mutation_state = mutation_state @transcoder = transcoder @positional_parameters = positional_parameters @named_parameters = named_parameters @raw_parameters = {} yield self if block_given? end |
Instance Attribute Details
#adhoc ⇒ Boolean
1757 1758 1759 |
# File 'lib/couchbase/options.rb', line 1757 def adhoc @adhoc end |
#client_context_id ⇒ String
1758 1759 1760 |
# File 'lib/couchbase/options.rb', line 1758 def client_context_id @client_context_id end |
#flex_index ⇒ Boolean
1767 1768 1769 |
# File 'lib/couchbase/options.rb', line 1767 def flex_index @flex_index end |
#max_parallelism ⇒ Integer
1759 1760 1761 |
# File 'lib/couchbase/options.rb', line 1759 def max_parallelism @max_parallelism end |
#metrics ⇒ Boolean
1765 1766 1767 |
# File 'lib/couchbase/options.rb', line 1765 def metrics @metrics end |
#pipeline_batch ⇒ Integer
1763 1764 1765 |
# File 'lib/couchbase/options.rb', line 1763 def pipeline_batch @pipeline_batch end |
#pipeline_cap ⇒ Integer
1764 1765 1766 |
# File 'lib/couchbase/options.rb', line 1764 def pipeline_cap @pipeline_cap end |
#preserve_expiry ⇒ Boolean
1768 1769 1770 |
# File 'lib/couchbase/options.rb', line 1768 def preserve_expiry @preserve_expiry end |
#profile ⇒ Symbol
1766 1767 1768 |
# File 'lib/couchbase/options.rb', line 1766 def profile @profile end |
#readonly ⇒ Boolean
1760 1761 1762 |
# File 'lib/couchbase/options.rb', line 1760 def readonly @readonly end |
#scan_cap ⇒ Integer
1762 1763 1764 |
# File 'lib/couchbase/options.rb', line 1762 def scan_cap @scan_cap end |
#scan_wait ⇒ Integer, #in_milliseconds
1761 1762 1763 |
# File 'lib/couchbase/options.rb', line 1761 def scan_wait @scan_wait end |
#scope_qualifier ⇒ String
1769 1770 1771 |
# File 'lib/couchbase/options.rb', line 1769 def scope_qualifier @scope_qualifier end |
#transcoder ⇒ JsonTranscoder, #decode(String)
1770 1771 1772 |
# File 'lib/couchbase/options.rb', line 1770 def transcoder @transcoder end |
Instance Method Details
#consistent_with(mutation_state) ⇒ Object
overrides consistency level set by #scan_consistency=
Sets the mutation tokens this query should be consistent with
1909 1910 1911 1912 |
# File 'lib/couchbase/options.rb', line 1909 def consistent_with(mutation_state) @scan_consistency = nil if @scan_consistency @mutation_state = mutation_state end |
#named_parameters(named) ⇒ Object
Sets named parameters for the query
1931 1932 1933 1934 |
# File 'lib/couchbase/options.rb', line 1931 def named_parameters(named) @named_parameters = named @positional_parameters = nil end |
#positional_parameters(positional) ⇒ Object
Sets positional parameters for the query
1917 1918 1919 1920 |
# File 'lib/couchbase/options.rb', line 1917 def positional_parameters(positional) @positional_parameters = positional @named_parameters = nil end |
#raw(key, value) ⇒ Object
Allows providing custom JSON key/value pairs for advanced usage
1884 1885 1886 |
# File 'lib/couchbase/options.rb', line 1884 def raw(key, value) @raw_parameters[key] = JSON.generate(value) end |
#scan_consistency=(level) ⇒ Object
overrides consistency level set by #consistent_with
Customizes the consistency guarantees for this query
:not_bounded
-
The indexer will return whatever state it has to the query engine at the time of query. This is the default (for
single-statement requests).
:request_plus
-
The indexer will wait until all mutations have been processed at the time of request before returning to the query
engine.
1899 1900 1901 1902 |
# File 'lib/couchbase/options.rb', line 1899 def scan_consistency=(level) @mutation_state = nil if @mutation_state @scan_consistency = level end |