Created
July 22, 2015 23:11
-
-
Save smathy/61f405853f7b5270d209 to your computer and use it in GitHub Desktop.
This file contains 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
class MyRedis | |
def self.conn | |
connect unless @conn | |
begin | |
@conn.ping | |
rescue Redis::BaseConnectionError | |
raise if @tried | |
@tried = true | |
connect | |
retry | |
end | |
@conn | |
end | |
def self.connect | |
@conn = Redis.new ...whatever... | |
end | |
end | |
### then you just use it like | |
MyRedis.conn.call_redis_methods |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment