class ActiveSupport::Cache::MemCacheStore

def delete_entry(key, options) # :nodoc:

:nodoc:
Delete an entry from the cache.
def delete_entry(key, options) # :nodoc:
  @data.delete(escape_key(key))
rescue Dalli::DalliError => e
  logger.error("DalliError (#{e}): #{e.message}") if logger
  false
end