delete_entry(key, options)
Delete an entry from the cache.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 167 def delete_entry(key, options) # :nodoc: rescue_error_with(false) { @data.delete(key) } end