Making it possible to use a connection pool for getting a Redis instance#21
Open
mikebaldry wants to merge 5 commits intoejfinneran:masterfrom
Open
Making it possible to use a connection pool for getting a Redis instance#21mikebaldry wants to merge 5 commits intoejfinneran:masterfrom
mikebaldry wants to merge 5 commits intoejfinneran:masterfrom
Conversation
…dis from a connection pool. Using MULTI instead of pipelining the requests, so they are atomic
1 similar comment
Owner
|
Are there other Redis libraries that use this pattern? I'm wondering if supporting https://github.com/mperham/connection_pool might be cleaner/easier. |
Author
|
@ejfinneran I did it in a specific way that allows that, you could do this: redis_pool = ConnectionPool.new(size: 5, timeout: 5) { Redis::Client.new }
Ratelimit.new("blah", checkout_redis_with: &redis_pool.method(:with))or as in the PR comment: Ratelimit.new("blah", checkout_redis_with: -> (&block) { redis_pool.with(&block) }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In some (most production, I'd have thought) projects you have a pool of Redis connections from which you can checkout a connection, perform your actions then put it back in to the pool ready for the next thing to use.
This is not possible with your current implementation so I've added an option
checkout_redis_with, you can pass in a lambda which yields with the Redis connection.looks like
or similar.
The original implementation still works the same, but checks out a connection when it needs to use one.
I've also updated it to use MULTI instead of pipelining as expressed in a previous unanswered PR.