Module: Mongo::Collection::View::Writable
- Included in:
- Mongo::Collection::View
- Defined in:
- lib/mongo/collection/view/writable.rb
Overview
Defines write related behaviour for collection view.
Instance Method Summary collapse
-
#delete_many(opts = {}) ⇒ Result
Remove documents from the collection.
-
#delete_one(opts = {}) ⇒ Result
Remove a document from the collection.
-
#find_one_and_delete(opts = {}) ⇒ BSON::Document?
Finds a single document in the database via findAndModify and deletes it, returning the original document.
-
#find_one_and_replace(replacement, opts = {}) ⇒ BSON::Document
Finds a single document and replaces it.
-
#find_one_and_update(document, opts = {}) ⇒ BSON::Document
Finds a single document and updates it.
-
#replace_one(replacement, opts = {}) ⇒ Result
Replaces a single document in the database with the new document.
-
#update_many(spec, opts = {}) ⇒ Result
Update documents in the collection.
-
#update_one(spec, opts = {}) ⇒ Result
Update a single document in the collection.
Instance Method Details
#delete_many(opts = {}) ⇒ Result
Remove documents from the collection.
135 136 137 |
# File 'lib/mongo/collection/view/writable.rb', line 135 def delete_many(opts = {}) remove(0, opts) end |
#delete_one(opts = {}) ⇒ Result
Remove a document from the collection.
151 152 153 |
# File 'lib/mongo/collection/view/writable.rb', line 151 def delete_one(opts = {}) remove(1, opts) end |
#find_one_and_delete(opts = {}) ⇒ BSON::Document?
Finds a single document in the database via findAndModify and deletes it, returning the original document.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/mongo/collection/view/writable.rb', line 37 def find_one_and_delete(opts = {}) cmd = { :findandmodify => collection.name, :query => filter, :remove => true } cmd[:fields] = projection if projection cmd[:sort] = sort if sort cmd[:maxTimeMS] = max_time_ms if max_time_ms cmd[:writeConcern] = write_concern. if write_concern write_with_retry do server = next_primary apply_collation!(cmd, server, opts) Operation::Commands::Command.new({ :selector => cmd, :db_name => database.name }).execute(server).first['value'] end end |
#find_one_and_replace(replacement, opts = {}) ⇒ BSON::Document
Finds a single document and replaces it.
77 78 79 |
# File 'lib/mongo/collection/view/writable.rb', line 77 def find_one_and_replace(replacement, opts = {}) find_one_and_update(replacement, opts) end |
#find_one_and_update(document, opts = {}) ⇒ BSON::Document
Finds a single document and updates it.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/mongo/collection/view/writable.rb', line 100 def find_one_and_update(document, opts = {}) cmd = { :findandmodify => collection.name, :query => filter } cmd[:update] = document cmd[:fields] = projection if projection cmd[:sort] = sort if sort cmd[:new] = !!(opts[:return_document] && opts[:return_document] == :after) cmd[:upsert] = opts[:upsert] if opts[:upsert] cmd[:maxTimeMS] = max_time_ms if max_time_ms cmd[:bypassDocumentValidation] = !!opts[:bypass_document_validation] cmd[:writeConcern] = write_concern. if write_concern value = write_with_retry do server = next_primary apply_collation!(cmd, server, opts) Operation::Commands::Command.new({ :selector => cmd, :db_name => database.name }).execute(server).first['value'] end value unless value.nil? || value.empty? end |
#replace_one(replacement, opts = {}) ⇒ Result
Replaces a single document in the database with the new document.
170 171 172 |
# File 'lib/mongo/collection/view/writable.rb', line 170 def replace_one(replacement, opts = {}) update(replacement, false, opts) end |
#update_many(spec, opts = {}) ⇒ Result
Update documents in the collection.
189 190 191 |
# File 'lib/mongo/collection/view/writable.rb', line 189 def update_many(spec, opts = {}) update(spec, true, opts) end |
#update_one(spec, opts = {}) ⇒ Result
Update a single document in the collection.
208 209 210 |
# File 'lib/mongo/collection/view/writable.rb', line 208 def update_one(spec, opts = {}) update(spec, false, opts) end |