Class: Couchbase::Collection::MutateInOptions
- Inherits:
-
Couchbase::CommonOptions
- Object
- Couchbase::CommonOptions
- Couchbase::Collection::MutateInOptions
- Defined in:
- lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb more...
Instance Attribute Summary collapse
-
#access_deleted ⇒ Boolean
For internal use only: allows access to deleted documents that are in ‘tombstone’ form.
-
#cas ⇒ Integer
Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.
-
#create_as_deleted ⇒ Boolean
For internal use only: allows creating documents in ‘tombstone’ form.
-
#durability_level ⇒ :none, ...
Level of durability.
-
#expiry ⇒ Integer
Expiration time to associate with the document.
-
#store_semantics ⇒ :replace, ...
Describes how the outer document store semantics on subdoc should act.
-
#transcoder ⇒ Object
Returns the value of attribute transcoder.
Attributes inherited from Couchbase::CommonOptions
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize {|| ... } ⇒ MutateInOptions
constructor
A new instance of MutateInOptions.
Constructor Details
#initialize {|| ... } ⇒ MutateInOptions
Returns a new instance of MutateInOptions.
388 389 390 391 392 393 394 |
# File 'lib/couchbase/collection_options.rb', line 388 def initialize super @durability_level = :none @store_semantics = :replace @transcoder = JsonTranscoder.new yield self if block_given? end |
Instance Attribute Details
#access_deleted ⇒ Boolean
Returns For internal use only: allows access to deleted documents that are in ‘tombstone’ form.
379 380 381 |
# File 'lib/couchbase/collection_options.rb', line 379 def access_deleted @access_deleted end |
#cas ⇒ Integer
Returns Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.
376 377 378 |
# File 'lib/couchbase/collection_options.rb', line 376 def cas @cas end |
#create_as_deleted ⇒ Boolean
Returns For internal use only: allows creating documents in ‘tombstone’ form.
382 383 384 |
# File 'lib/couchbase/collection_options.rb', line 382 def create_as_deleted @create_as_deleted end |
#durability_level ⇒ :none, ...
Returns level of durability.
385 386 387 |
# File 'lib/couchbase/collection_options.rb', line 385 def durability_level @durability_level end |
#expiry ⇒ Integer
Returns expiration time to associate with the document.
364 365 366 |
# File 'lib/couchbase/collection_options.rb', line 364 def expiry @expiry end |
#store_semantics ⇒ :replace, ...
Describes how the outer document store semantics on subdoc should act
-
:replace
: replace the document, fail if it does not exist. This is the default -
:upsert
: replace the document or create if it does not exist -
:insert
: create the document, fail if it exists
373 374 375 |
# File 'lib/couchbase/collection_options.rb', line 373 def store_semantics @store_semantics end |
#transcoder ⇒ Object
Returns the value of attribute transcoder.
396 397 398 |
# File 'lib/couchbase/collection_options.rb', line 396 def transcoder @transcoder end |