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
- #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, 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| ... } ⇒ Boolean?
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, 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| ... } ⇒ Boolean?
Either positional_parameters
or named_parameters
may be specified.
Creates new instance of options for Cluster#query
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 |
# File 'lib/couchbase/options.rb', line 1360 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, 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 @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
1287 1288 1289 |
# File 'lib/couchbase/options.rb', line 1287 def adhoc @adhoc end |
#client_context_id ⇒ String
1288 1289 1290 |
# File 'lib/couchbase/options.rb', line 1288 def client_context_id @client_context_id end |
#flex_index ⇒ Boolean
1297 1298 1299 |
# File 'lib/couchbase/options.rb', line 1297 def flex_index @flex_index end |
#max_parallelism ⇒ Integer
1289 1290 1291 |
# File 'lib/couchbase/options.rb', line 1289 def max_parallelism @max_parallelism end |
#metrics ⇒ Boolean
1295 1296 1297 |
# File 'lib/couchbase/options.rb', line 1295 def metrics @metrics end |
#pipeline_batch ⇒ Integer
1293 1294 1295 |
# File 'lib/couchbase/options.rb', line 1293 def pipeline_batch @pipeline_batch end |
#pipeline_cap ⇒ Integer
1294 1295 1296 |
# File 'lib/couchbase/options.rb', line 1294 def pipeline_cap @pipeline_cap end |
#profile ⇒ Symbol
1296 1297 1298 |
# File 'lib/couchbase/options.rb', line 1296 def profile @profile end |
#readonly ⇒ Boolean
1290 1291 1292 |
# File 'lib/couchbase/options.rb', line 1290 def readonly @readonly end |
#scan_cap ⇒ Integer
1292 1293 1294 |
# File 'lib/couchbase/options.rb', line 1292 def scan_cap @scan_cap end |
#scan_wait ⇒ Integer, #in_milliseconds
1291 1292 1293 |
# File 'lib/couchbase/options.rb', line 1291 def scan_wait @scan_wait end |
#scope_qualifier ⇒ String
1298 1299 1300 |
# File 'lib/couchbase/options.rb', line 1298 def scope_qualifier @scope_qualifier end |
#transcoder ⇒ JsonTranscoder, #decode(String)
1299 1300 1301 |
# File 'lib/couchbase/options.rb', line 1299 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
1434 1435 1436 1437 |
# File 'lib/couchbase/options.rb', line 1434 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
1456 1457 1458 1459 |
# File 'lib/couchbase/options.rb', line 1456 def named_parameters(named) @named_parameters = named @positional_parameters = nil end |
#positional_parameters(positional) ⇒ Object
Sets positional parameters for the query
1442 1443 1444 1445 |
# File 'lib/couchbase/options.rb', line 1442 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
1409 1410 1411 |
# File 'lib/couchbase/options.rb', line 1409 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.
1424 1425 1426 1427 |
# File 'lib/couchbase/options.rb', line 1424 def scan_consistency=(level) @mutation_state = nil if @mutation_state @scan_consistency = level end |