Method: Redis#connection

Defined in:
lib/redis.rb

#connectionObject

[View source] [View on GitHub]

122
123
124
125
126
127
128
129
130
# File 'lib/redis.rb', line 122

def connection
  {
    host: @client.host,
    port: @client.port,
    db: @client.db,
    id: id,
    location: "#{@client.host}:#{@client.port}"
  }
end