# File lib/redis/connection/ruby.rb, line 31
      def connect_unix(path, timeout)
        with_timeout(timeout.to_f / 1_000_000) do
          @sock = UNIXSocket.new(path)
        end
      end