class Redis

def _hashify

def _hashify
  lambda { |array|
    hash = Hash.new
    array.each_slice(2) do |field, value|
      hash[field] = value
    end
    hash
  }
end