module Redis::ConnectionHacks

Public Instance Methods

read_with_old_protocol() click to toggle source
# File lib/daikon/redis_hacks.rb, line 37
def read_with_old_protocol
  reply_type = @sock.gets
  raise Errno::ECONNRESET unless reply_type
  reply_type
end