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