class Redis

def _boolify

returning false.
where the method call will return nil. Propagate the nil instead of falsely
Commands returning 1 for true and 0 for false may be executed in a pipeline
def _boolify
  lambda { |value|
    value == 1 if value
  }
end