Được TopGit lập chỉ mục từ metadata GitHub: leandromoreira/redlock-rb có 729 sao, viết chủ yếu bằng Ruby. Redlock is a redis-based distributed lock implementation in Ruby. More than 40 Millions of downloads.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Distributed locks are a very useful primitive in many environments where different processes require to operate with shared resources in a mutually exclusive way.
There are a number of libraries and blog posts describing how to implement a DLM (Distributed Lock Manager) with Redis, but every library uses a different approach, and many use a simple approach with lower guarantees compared to what can be achieved with slightly more complex designs.
This is an implementation of a proposed distributed lock algorithm with Redis. It started as a fork from antirez implementation.
Compatibility
It works with Redis server versions 6.0 or later.
Redlock >= 2.0 only works with RedisClient client instance.
Installation
Add this line to your application's Gemfile:
gem 'redlock'
And then execute:
$ bundle
Or install it yourself as:
$ gem install redlock
Documentation
RubyDoc
Usage example
Acquiring a lock
NOTE: All expiration durations are in milliseconds.
There's also a block version that automatically unlocks the lock:
lock_manager.lock("resource_key", 2000) do |locked|
if locked
# critical code
else
# error handling
end
end
There's also a bang version that only executes the block if the lock is successfully acquired, returning the block's value as a result, or raising an exception otherwise. Passing a block is mandatory.
begin
block_result = lock_manager.lock!("resource_key", 2000) do
# critical code
end
rescue Redlock::LockError
# error handling
end
Extending a lock
To extend the life of the lock:
begin
lock_info = lock_manager.lock("resource_key", 2000)
while lock_info
# Critical code
# Time up and more work to do? Extend the lock.
lock_info = lock_manager.lock("resource key", 3000, extend: lock_info)
end
rescue Redlock::LockError
# error handling
end
The above code will also acquire the lock if the previous lock has expired and the lock is currently free. Keep in mind that this means the lock could have been acquired and released by someone else in the meantime. To only extend the life of the lock if currently locked by yourself, use the extend_only_if_locked parameter:
Any caller can call the above method to query the status. If you hold a lock and would like to check if it is valid, you can use the valid_lock? method:
The above methods are not safe if you are using this to time critical code, since they return true if the lock has not expired, even if there's only (for example) 1ms left on the lock. If you want to safely time the lock validity, you can use the get_remaining_ttl_for_lock and get_remaining_ttl_for_resource methods.
Use get_remaining_ttl_for_lock if you hold a lock and want to check the TTL specifically for your lock:
Use get_remaining_ttl_for_resource if you do not hold a lock, but want to know the remaining TTL on a locked resource:
# Some part of the code
resource = "resource_key"
lock_info = lock_manager.lock(resource, 2000)
# Some other part of the code
lock_manager.locked?(resource)
#=> true
lock_manager.get_remaining_ttl_for_resource(resource)
#=> 1975
# Sometime later
lock_manager.locked?(resource)
#=> false
lock_manager.get_remaining_ttl_for_resource(resource)
#=> nil
Redis client configuration
Redlock::Client expects URLs, or configurations or Redis objects on initialization. Redis objects should be used for configuring the connection in more detail, i.e. setting username and password.
To utilize Redlock::Client with sentinels you can pass an instance of RedisClient or just a configuration hash as part of the servers array during initialization.
It is possible to associate :retry_delay option with Proc object. It will be called every time, with attempt number
as argument, to get delay time value before next retry.
retry_delay = proc { |attempt_number| 200 * attempt_number ** 2 } # delay of 200ms for 1st retry, 800ms for 2nd retry, etc.
lock_manager = Redlock::Client.new(servers, retry_delay: retry_delay)
For more information you can check documentation.
Run tests
Make sure you have docker installed.
$ make
Disclaimer
This code implements an algorithm which is currently a proposal, it was not formally analyzed. Make sure to understand how it works before using it in your production environments. You can see discussion about this approach at reddit and also the Antirez answers for some critics.
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)
leandromoreira/redlock-rb có 729 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/leandromoreira/redlock-rb. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
leandromoreira/redlock-rb có những chủ đề gì?
GitHub topics của leandromoreira/redlock-rb: "distributed-locks", "lock", "redis", "redlock", "ruby". TopGit xếp repo vào nhóm Data.
leandromoreira/redlock-rb còn đang phát triển không?
Commit gần nhất trên leandromoreira/redlock-rb là 4 tháng trước (theo timestamp GitHub). Repo có 84 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
leandromoreira/redlock-rb là gì?
leandromoreira/redlock-rb (leandromoreira/redlock-rb) là dự án Ruby trên GitHub. Theo mô tả gốc: Redlock is a redis-based distributed lock implementation in Ruby. More than 40 Millions of downloads.
leandromoreira/redlock-rb so với các dự án Data khác thế nào?
leandromoreira/redlock-rb được TopGit xếp vào nhóm Data, với 729 sao GitHub và viết bằng Ruby. Xem trang chủ đề Data trên TopGit để so sánh với các dự án tương tự theo số sao và mức độ hoạt động.
leandromoreira/redlock-rb viết bằng ngôn ngữ gì?
leandromoreira/redlock-rb chủ yếu viết bằng Ruby. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Vì sao leandromoreira/redlock-rb được xếp vào nhóm Data?
TopGit xếp leandromoreira/redlock-rb vào nhóm Data dựa trên GitHub topics và mô tả của repo (gắn thẻ: "distributed-locks", "lock", "redis"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Muốn nghe thêm một ý kiến về redlock-rb?
Hỏi một AI đọc được trang này — một cú bấm là có ngay nhận định về redlock-rb.