``` cache.getset(:foo, ignore_nil: true) { nil } cache.key?(:foo) == false cache[:foo] == nil cache.getset(:foo, ignore_nil: true) { :bar } cache.key?(:foo) == true cache[:foo] == :bar ```