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