delete_entry(key, **options)
Delete an entry from the cache.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 296 def delete_entry(key, **options) rescue_error_with(false) { @data.with { |c| c.delete(key) } } end