delete_entry(key, options)
Delete an entry from the cache.
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 417 def delete_entry(key, options) failsafe :delete_entry, returning: false do redis.with { |c| c.del key } end end