Allows for safe concurrent updates to a single record without the need for locks.
This is done by only updating the record when the lockless_uuid
is unchanged and updating the lockless_uuid
with each update. Since the SQL update command is atomic we can scope the update to the old lockless_uuid
and update it to a new value in a single update command.
Add this line to your application's Gemfile:
gem 'lockless'
And then execute:
$ bundle install
Or install it yourself:
$ gem install lockless
class User < ActiveRecord::Base
include Lockless::Model
end
Manually add migration file or generate base with:
bundle exec rails g migration AddLocklessUuidTo<ModelName> lockless_uuid:string
# e.g.
bundle exec rails g migration AddLocklessUuidToUser lockless_uuid:string
Update migration to add default value and and make non-nullable
class AddLocklessUuidToUsers < ActiveRecord::Migration[5.0]
def change
add_column :users, :lockless_uuid, :string, default: "lockless", null: false
end
end
class User < ActiveRecord::Base
include Lockless::Model
self.lockless_column = :custom_uuid
end
user1 = User.first # => #<User id: 1, ...>
user1.name = "new name1"
# other process/service/application
user2 = User.first # => #<User id: 1, ...>
user2.name = "new name2"
# Save user2 before saving user1
user2.lockless_save! # => true
# user1 fails to save as it's been updated earlier by user2
user1.lockless_save! # => false
# when lockless_save doesn't work you can either ignore the update and continue
# or reload the record and try again
# or calling `.save!`/`save` will forcefully save changes without respecting lockless
# `.save!` will cause the UUID to be changed again
user1.reload
user1.name # => "new name2"
user1.name = "new name3"
user1.lockless_save! # => true
user1.reload.name # => "new name3"
user1.reload
user1.name = "new name1"
User.all.update_all(name: "new name4")
# user1 fails to save as it's been updated earlier in `update_all`
user1.lockless_save! # => false
user1.reload.name # => "new name4"
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
bundle exec rake
bundle exec rake standard
bundle exec rake standard:fix
bundle exec guard
This will auto run the related unit tests while you develop and save files.
Bug reports and pull requests are welcome on GitHub at https://github.com/cianmce/lockless. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Lockless project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
- Allow for custom primary key column name
- Allow a boolean to be passed to allow for validation to be skipped like in
.save