Flowdock
method

delete

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActiveSupport::Cache::MemCacheStore
delete(key, options = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 71
      def delete(key, options = nil) # :nodoc:
        super
        response = @data.delete(key, expires_in(options))
        response == Response::DELETED
      rescue MemCache::MemCacheError => e
        logger.error("MemCacheError (#{e}): #{e.message}")
        false
      end
Register or log in to add new notes.