class ActiveSupport::Cache::RedisCacheStore

def delete_entry(key, options)

Delete an entry from the cache.
def delete_entry(key, options)
  failsafe :delete_entry, returning: false do
    redis.with { |c| c.del key }
  end
end