Class: Mongoid::Persistence::Atomic::Sets
- Inherits:
-
Object
- Object
- Mongoid::Persistence::Atomic::Sets
- Includes:
- Operation
- Defined in:
- lib/mongoid/persistence/atomic/sets.rb
Overview
This class provides atomic $set behaviour.
Instance Attribute Summary
Attributes included from Operation
#document, #fields, #options, #value
Instance Method Summary collapse
-
#persist ⇒ Object
Sends the atomic $set operation to the database.
Methods included from Operation
#collection, #initialize, #operation, #path, #prepare
Methods included from Atomic::Positionable
Instance Method Details
#persist ⇒ Object
Sends the atomic $set operation to the database.
18 19 20 21 22 23 24 |
# File 'lib/mongoid/persistence/atomic/sets.rb', line 18 def persist prepare do document[field] = value execute("$set") document[field] end end |