Module: Mongoid::Relations::Embedded::Batchable
Overview
Contains behaviour for executing operations in batch on embedded documents.
Instance Method Summary collapse
-
#batch_clear(docs) ⇒ Array
Clear all of the docs out of the relation in a single swipe.
-
#batch_insert(docs) ⇒ Array<Hash>
Insert new documents as a batch push ($pushAll).
-
#batch_remove(docs, method = :delete) ⇒ Object
Batch remove the provided documents as a $pullAll.
-
#batch_replace(docs) ⇒ Array<Hash>
Batch replace the provided documents as a $set.
Methods included from Positional
Instance Method Details
#batch_clear(docs) ⇒ Array
Clear all of the docs out of the relation in a single swipe.
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/mongoid/relations/embedded/batchable.rb', line 37 def batch_clear(docs) pre_process_batch_remove(docs, :delete) unless docs.empty? collection.find(selector).update( positionally(selector, "$unset" => { path => true }) ) post_process_batch_remove(docs, :delete) end _unscoped.clear end |
#batch_insert(docs) ⇒ Array<Hash>
Insert new documents as a batch push ($pushAll). This ensures that all callbacks are run at the appropriate time and only 1 request is made to the database.
23 24 25 |
# File 'lib/mongoid/relations/embedded/batchable.rb', line 23 def batch_insert(docs) execute_batch_insert(docs, "$pushAll") end |
#batch_remove(docs, method = :delete) ⇒ Object
Batch remove the provided documents as a $pullAll.
57 58 59 60 61 62 63 64 65 66 |
# File 'lib/mongoid/relations/embedded/batchable.rb', line 57 def batch_remove(docs, method = :delete) removals = pre_process_batch_remove(docs, method) if !docs.empty? collection.find(selector).update( positionally(selector, "$pullAll" => { path => removals }) ) post_process_batch_remove(docs, method) end reindex end |
#batch_replace(docs) ⇒ Array<Hash>
Batch replace the provided documents as a $set.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/mongoid/relations/embedded/batchable.rb', line 78 def batch_replace(docs) if docs.blank? if _assigning? && !empty? base.add_atomic_unset(first) end batch_remove(target.dup) else base.delayed_atomic_sets.clear unless _assigning? docs = normalize_docs(docs).compact target.clear and _unscoped.clear inserts = execute_batch_insert(docs, "$set") add_atomic_sets(inserts) end end |