# File lib/hiredis/ruby/reader.rb, line 147
        def read(bytes, skip = 0)
          start = @pos
          stop = start + bytes + skip
          return false if @length < stop

          @pos = stop
          force_encoding @buffer[start, bytes]
        end