Class: Couchbase::BinaryCollection
- Inherits:
-
Object
- Object
- Couchbase::BinaryCollection
- Defined in:
- lib/couchbase/binary_collection.rb,
lib/couchbase/binary_collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/binary_collection.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/binary_collection_options.rb more...
Defined Under Namespace
Classes: AppendOptions, CounterResult, DecrementOptions, IncrementOptions, PrependOptions
Instance Method Summary collapse
-
#append(id, content, options = AppendOptions.new) ⇒ Collection::MutationResult
Appends binary content to the document.
-
#decrement(id, options = DecrementOptions.new) ⇒ CounterResult
Decrements the counter document by one of the number defined in the options.
-
#increment(id, options = IncrementOptions.new) ⇒ CounterResult
Increments the counter document by one of the number defined in the options.
-
#initialize(collection) ⇒ BinaryCollection
constructor
A new instance of BinaryCollection.
-
#prepend(id, content, options = PrependOptions.new) ⇒ Collection::MutationResult
Prepends binary content to the document.
Constructor Details
#initialize(collection) ⇒ BinaryCollection
Returns a new instance of BinaryCollection.
22 23 24 25 |
# File 'lib/couchbase/binary_collection.rb', line 22 def initialize(collection) @collection = collection @backend = collection.instance_variable_get("@backend") end |
Instance Method Details
#append(id, content, options = AppendOptions.new) ⇒ Collection::MutationResult
Appends binary content to the document
34 |
# File 'lib/couchbase/binary_collection.rb', line 34 def append(id, content, = AppendOptions.new) end |
#decrement(id, options = DecrementOptions.new) ⇒ CounterResult
Decrements the counter document by one of the number defined in the options
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/couchbase/binary_collection.rb', line 73 def decrement(id, = DecrementOptions.new) resp = @backend.document_decrement(@collection.bucket_name, "#{@collection.scope_name}.#{@collection.name}", id, .timeout, { delta: .delta, initial_value: .initial, expiry: .expiry, durability_level: .durability_level, }) CounterResult.new do |res| res.cas = resp[:cas] res.content = resp[:content] res.mutation_token = @collection.send(:extract_mutation_token, resp) end end |
#increment(id, options = IncrementOptions.new) ⇒ CounterResult
Increments the counter document by one of the number defined in the options
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/couchbase/binary_collection.rb', line 51 def increment(id, = IncrementOptions.new) resp = @backend.document_increment(@collection.bucket_name, "#{@collection.scope_name}.#{@collection.name}", id, .timeout, { delta: .delta, initial_value: .initial, expiry: .expiry, durability_level: .durability_level, }) CounterResult.new do |res| res.cas = resp[:cas] res.content = resp[:content] res.mutation_token = @collection.send(:extract_mutation_token, resp) end end |
#prepend(id, content, options = PrependOptions.new) ⇒ Collection::MutationResult
Prepends binary content to the document
43 |
# File 'lib/couchbase/binary_collection.rb', line 43 def prepend(id, content, = PrependOptions.new) end |