class Redis::Connection::Ruby

def connect_unix(path, timeout)

def connect_unix(path, timeout)
  with_timeout(timeout.to_f / 1_000_000) do
    @sock = UNIXSocket.new(path)
  end
end