Class: Couchbase::Collection
- Inherits:
-
Object
- Object
- Couchbase::Collection
- Defined in:
- lib/couchbase/collection.rb,
lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb more...
Defined Under Namespace
Classes: ExistsOptions, ExistsResult, GetAllReplicasOptions, GetAndLockOptions, GetAndTouchOptions, GetAnyReplicaOptions, GetOptions, GetReplicaResult, GetResult, InsertOptions, LookupInOptions, LookupInResult, MutateInOptions, MutateInResult, MutationResult, RemoveOptions, ReplaceOptions, TouchOptions, UnlockOptions, UpsertOptions
Instance Attribute Summary collapse
-
#bucket_name ⇒ Object
readonly
Returns the value of attribute bucket_name.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#scope_name ⇒ Object
readonly
Returns the value of attribute scope_name.
Instance Method Summary collapse
-
#binary ⇒ BinaryCollection
Provides access to the binary APIs, not used for JSON documents.
-
#exists(id, options = ExistsOptions.new) ⇒ ExistsResult
Checks if the given document ID exists on the active partition.
-
#get(id, options = GetOptions.new) ⇒ GetResult
Fetches the full document from the collection.
-
#get_all_replicas(id, options = GetAllReplicasOptions.new) ⇒ Array<GetReplicaResult>
Reads from all available replicas and the active node and returns the results.
-
#get_and_lock(id, lock_time, options = GetAndLockOptions.new) ⇒ GetResult
Fetches the full document and write-locks it for the given duration.
-
#get_and_touch(id, expiry, options = GetAndTouchOptions.new) ⇒ GetResult
Fetches a full document and resets its expiration time to the duration provided.
-
#get_any_replica(id, options = GetAnyReplicaOptions.new) ⇒ GetReplicaResult
Reads all available replicas, and returns the first found.
-
#initialize(backend, bucket_name, scope_name, collection_name) ⇒ Collection
constructor
A new instance of Collection.
-
#insert(id, content, options = InsertOptions.new) ⇒ MutationResult
Inserts a full document which does not exist yet.
-
#lookup_in(id, specs, options = LookupInOptions.new) ⇒ LookupInResult
Performs lookups to document fragments.
-
#mutate_in(id, specs, options = MutateInOptions.new) ⇒ MutateInResult
Performs mutations to document fragments.
-
#remove(id, options = RemoveOptions.new) ⇒ MutationResult
Removes a document from the collection.
-
#replace(id, content, options = ReplaceOptions.new) ⇒ MutationResult
Replaces a full document which already exists.
-
#touch(id, expiry, options = TouchOptions.new) ⇒ MutationResult
Update the expiration of the document with the given id.
-
#unlock(id, cas, options = UnlockOptions.new) ⇒ Object
Unlocks a document if it has been locked previously.
-
#upsert(id, content, options = UpsertOptions.new) ⇒ MutationResult
Upserts (inserts or updates) a full document which might or might not exist yet.
Constructor Details
#initialize(backend, bucket_name, scope_name, collection_name) ⇒ Collection
Returns a new instance of Collection.
31 32 33 34 35 36 |
# File 'lib/couchbase/collection.rb', line 31 def initialize(backend, bucket_name, scope_name, collection_name) @backend = backend @bucket_name = bucket_name @scope_name = scope_name @name = collection_name end |
Instance Attribute Details
#bucket_name ⇒ Object (readonly)
Returns the value of attribute bucket_name.
21 22 23 |
# File 'lib/couchbase/collection.rb', line 21 def bucket_name @bucket_name end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
23 24 25 |
# File 'lib/couchbase/collection.rb', line 23 def name @name end |
#scope_name ⇒ Object (readonly)
Returns the value of attribute scope_name.
22 23 24 |
# File 'lib/couchbase/collection.rb', line 22 def scope_name @scope_name end |
Instance Method Details
#binary ⇒ BinaryCollection
Provides access to the binary APIs, not used for JSON documents
41 42 43 |
# File 'lib/couchbase/collection.rb', line 41 def binary BinaryCollection.new(self) end |
#exists(id, options = ExistsOptions.new) ⇒ ExistsResult
Checks if the given document ID exists on the active partition.
126 127 128 129 130 131 132 133 |
# File 'lib/couchbase/collection.rb', line 126 def exists(id, = ExistsOptions.new) resp = @backend.document_exists(bucket_name, "#{@scope_name}.#{@name}", id, .timeout) ExistsResult.new do |res| res.status = resp[:status] res.partition_id = resp[:partition_id] res.cas = resp[:cas] if res.status != :not_found end end |
#get(id, options = GetOptions.new) ⇒ GetResult
Fetches the full document from the collection
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/couchbase/collection.rb', line 51 def get(id, = GetOptions.new) resp = if .need_projected_get? @backend.document_get_projected(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, .with_expiry, .projections, .preserve_array_indexes) else @backend.document_get(bucket_name, "#{@scope_name}.#{@name}", id, .timeout) end GetResult.new do |res| res.transcoder = .transcoder res.cas = resp[:cas] res.flags = resp[:flags] res.encoded = resp[:content] res.expiry = resp[:expiry] if resp.key?(:expiry) end end |
#get_all_replicas(id, options = GetAllReplicasOptions.new) ⇒ Array<GetReplicaResult>
Reads from all available replicas and the active node and returns the results
110 |
# File 'lib/couchbase/collection.rb', line 110 def get_all_replicas(id, = GetAllReplicasOptions.new) end |
#get_and_lock(id, lock_time, options = GetAndLockOptions.new) ⇒ GetResult
Fetches the full document and write-locks it for the given duration
77 78 79 80 81 82 83 84 85 |
# File 'lib/couchbase/collection.rb', line 77 def get_and_lock(id, lock_time, = GetAndLockOptions.new) resp = @backend.document_get_and_lock(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, lock_time) GetResult.new do |res| res.transcoder = .transcoder res.cas = resp[:cas] res.flags = resp[:flags] res.encoded = resp[:content] end end |
#get_and_touch(id, expiry, options = GetAndTouchOptions.new) ⇒ GetResult
Fetches a full document and resets its expiration time to the duration provided
94 95 96 97 98 99 100 101 102 |
# File 'lib/couchbase/collection.rb', line 94 def get_and_touch(id, expiry, = GetAndTouchOptions.new) resp = @backend.document_get_and_touch(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, expiry) GetResult.new do |res| res.transcoder = .transcoder res.cas = resp[:cas] res.flags = resp[:flags] res.encoded = resp[:content] end end |
#get_any_replica(id, options = GetAnyReplicaOptions.new) ⇒ GetReplicaResult
Reads all available replicas, and returns the first found
118 |
# File 'lib/couchbase/collection.rb', line 118 def get_any_replica(id, = GetAnyReplicaOptions.new) end |
#insert(id, content, options = InsertOptions.new) ⇒ MutationResult
Inserts a full document which does not exist yet
158 159 160 161 162 163 164 165 166 167 168 |
# File 'lib/couchbase/collection.rb', line 158 def insert(id, content, = InsertOptions.new) blob, flags = .transcoder.encode(content) resp = @backend.document_insert(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, blob, flags, { durability_level: .durability_level, expiry: .expiry, }) MutationResult.new do |res| res.cas = resp[:cas] res.mutation_token = extract_mutation_token(resp) end end |
#lookup_in(id, specs, options = LookupInOptions.new) ⇒ LookupInResult
Performs lookups to document fragments
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
# File 'lib/couchbase/collection.rb', line 241 def lookup_in(id, specs, = LookupInOptions.new) resp = @backend.document_lookup_in( bucket_name, "#{@scope_name}.#{@name}", id, .timeout, .access_deleted, specs.map do |s| { opcode: s.type, xattr: s.xattr?, path: s.path, } end ) LookupInResult.new do |res| res.transcoder = .transcoder res.cas = resp[:cas] res.encoded = resp[:fields].map do |field| SubDocumentField.new do |f| f.exists = field[:exists] f.index = field[:index] f.path = field[:path] f.status = field[:status] f.error = field[:error] f.value = field[:value] f.type = field[:type] end end end end |
#mutate_in(id, specs, options = MutateInOptions.new) ⇒ MutateInResult
Performs mutations to document fragments
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/couchbase/collection.rb', line 276 def mutate_in(id, specs, = MutateInOptions.new) resp = @backend.document_mutate_in( bucket_name, "#{@scope_name}.#{@name}", id, .timeout, specs.map do |s| { opcode: s.type, path: s.path, param: s.param, xattr: s.xattr?, expand_macros: s., create_path: s.create_path?, } end, { durability_level: .durability_level, store_semantics: .store_semantics, access_deleted: .access_deleted, cas: .cas, expiry: .expiry, } ) result = MutateInResult.new do |res| res.transcoder = .transcoder res.cas = resp[:cas] res.mutation_token = extract_mutation_token(resp) res.first_error_index = resp[:first_error_index] res.encoded = resp[:fields].map do |field| SubDocumentField.new do |f| f.exists = field[:exists] f.path = field[:path] f.status = field[:status] f.error = field[:error] f.value = field[:value] f.type = field[:type] end end end raise result.first_error unless result.success? result end |
#remove(id, options = RemoveOptions.new) ⇒ MutationResult
Removes a document from the collection
141 142 143 144 145 146 147 148 149 |
# File 'lib/couchbase/collection.rb', line 141 def remove(id, = RemoveOptions.new) resp = @backend.document_remove(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, { durability_level: .durability_level, }) MutationResult.new do |res| res.cas = resp[:cas] res.mutation_token = extract_mutation_token(resp) end end |
#replace(id, content, options = ReplaceOptions.new) ⇒ MutationResult
Replaces a full document which already exists
196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/couchbase/collection.rb', line 196 def replace(id, content, = ReplaceOptions.new) blob, flags = .transcoder.encode(content) resp = @backend.document_replace(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, blob, flags, { durability_level: .durability_level, expiry: .expiry, cas: .cas, }) MutationResult.new do |res| res.cas = resp[:cas] res.mutation_token = extract_mutation_token(resp) end end |
#touch(id, expiry, options = TouchOptions.new) ⇒ MutationResult
Update the expiration of the document with the given id
216 217 218 219 220 221 |
# File 'lib/couchbase/collection.rb', line 216 def touch(id, expiry, = TouchOptions.new) resp = @backend.document_touch(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, expiry) MutationResult.new do |res| res.cas = resp[:cas] end end |
#unlock(id, cas, options = UnlockOptions.new) ⇒ Object
Unlocks a document if it has been locked previously
230 231 232 |
# File 'lib/couchbase/collection.rb', line 230 def unlock(id, cas, = UnlockOptions.new) @backend.document_unlock(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, cas) end |
#upsert(id, content, options = UpsertOptions.new) ⇒ MutationResult
Upserts (inserts or updates) a full document which might or might not exist yet
177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/couchbase/collection.rb', line 177 def upsert(id, content, = UpsertOptions.new) blob, flags = .transcoder.encode(content) resp = @backend.document_upsert(bucket_name, "#{@scope_name}.#{@name}", id, .timeout, blob, flags, { durability_level: .durability_level, expiry: .expiry, }) MutationResult.new do |res| res.cas = resp[:cas] res.mutation_token = extract_mutation_token(resp) end end |