mongoid_optimistic_locking icon indicating copy to clipboard operation
mongoid_optimistic_locking copied to clipboard

Addon for Mongoid to allow optimistic locking (CAS)

Results 1 mongoid_optimistic_locking issues
Sort by recently updated
recently updated
newest added

person = Person.create!(:name => 'xyz') - No validations in the model Here the _lock_version is 1 person.save Here the _lock_version is still 1 Am I missing something ? or is...