Sha256: b1eafe9b8ff60a5ff4eacf05a414f379c1ef9de94d6b77bff9862ba208489253
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
# frozen_string_literal: true require "redis/connection/registry" require "redis/errors" require "hiredis/connection" require "timeout" class Redis module Connection class Hiredis def self.connect(config) connection = ::Hiredis::Connection.new connect_timeout = (config.fetch(:connect_timeout, 0) * 1_000_000).to_i if config[:scheme] == "unix" connection.connect_unix(config[:path], connect_timeout) else connection.connect(config[:host], config[:port], connect_timeout) end instance = new(connection) instance.timeout = config[:read_timeout] instance rescue Errno::ETIMEDOUT raise TimeoutError end def initialize(connection) @connection = connection end def connected? @connection&.connected? end def timeout=(timeout) # Hiredis works with microsecond timeouts @connection.timeout = Integer(timeout * 1_000_000) end def disconnect @connection.disconnect @connection = nil end def write(command) @connection.write(command.flatten(1)) rescue Errno::EAGAIN raise TimeoutError end def read reply = @connection.read reply = CommandError.new(reply.message) if reply.is_a?(RuntimeError) reply rescue Errno::EAGAIN raise TimeoutError rescue RuntimeError => err raise ProtocolError, err.message end end end end Redis::Connection.drivers << Redis::Connection::Hiredis
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
redis-4.7.1 | lib/redis/connection/hiredis.rb |
redis-4.7.0 | lib/redis/connection/hiredis.rb |