module RedisClient::Config::Common

def server_url

def server_url
  if path
    "#{path}/#{db}"
  else
    "redis#{'s' if ssl?}://#{host}:#{port}/#{db}"
  end
end