Fog::AWS:DynamoDB::Locker
This is an attempt to use DynamoDB as a lock store.
We don't have a 'Locks as a Service' thing yet, so this is an experiment to make the best of what we do have.
Would love to hear of any use of this or if you think it is just a terrible idea to begin with.
Inspired by the simplicity of sequel-pg-locker by @dylanegan.
Installation
Add this line to your application's Gemfile:
gem 'fog-aws-dynamodb-locker'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fog-aws-dynamodb-locker
Usage
export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
export DYNAMODB_LOCK_TABLE='my-lock-table'
require 'fog/aws/dynamodb/locker'
# first run only
Fog::AWS::DynamoDB::Locker.init!
# create a lock
Fog::AWS::DynamoDB::Locker.lock!('my lock')
# => true
# try to claim it a second time
Fog::AWS::DynamoDB::Locker.lock!('my lock')
# => false
# release it
Fog::AWS::DynamoDB::Locker.release!('my lock')
# => true
TODO
- real specs
- set a timestamp on each lock
- allow metadata on each lock
Fog::AWS::DynamoDB::Locker.sweep!(n)
to remove all locks that aren
old
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request