Class: Couchbase::Collection::MutateInOptions

Inherits:
Couchbase::CommonOptions show all
Defined in:
lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb
more...

Instance Attribute Summary collapse

Attributes inherited from Couchbase::CommonOptions

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize {|| ... } ⇒ MutateInOptions

Returns a new instance of MutateInOptions.

Yield Parameters:

[View source]

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_deletedBoolean

Returns For internal use only: allows access to deleted documents that are in ‘tombstone’ form.

Returns:

  • (Boolean)

    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

#casInteger

Returns Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.

Returns:

  • (Integer)

    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_deletedBoolean

Returns For internal use only: allows creating documents in ‘tombstone’ form.

Returns:

  • (Boolean)

    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.

Returns:

  • (:none, :majority, :majority_and_persist_to_active, :persist_to_majority)

    level of durability


385
386
387
# File 'lib/couchbase/collection_options.rb', line 385

def durability_level
  @durability_level
end

#expiryInteger

Returns expiration time to associate with the document.

Returns:

  • (Integer)

    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

Returns:

  • (:replace, :upsert, :insert)

373
374
375
# File 'lib/couchbase/collection_options.rb', line 373

def store_semantics
  @store_semantics
end

#transcoderObject

Returns the value of attribute transcoder.


396
397
398
# File 'lib/couchbase/collection_options.rb', line 396

def transcoder
  @transcoder
end