Method: Redis#initialize
- Defined in:
- lib/redis.rb
#initialize(options = {}) ⇒ Redis
Returns a new instance of Redis.
29 30 31 32 33 34 |
# File 'lib/redis.rb', line 29 def initialize( = {}) = .dup @original_client = @client = Client.new() super() # Monitor#initialize end |