class ActiveSupport::Cache::Store
def clear(options = nil)
The options hash is passed to the underlying cache implementation.
affect other processes if shared cache is being used.
Clear the entire cache. Be careful with this method since it could
def clear(options = nil) raise NotImplementedError.new("#{self.class.name} does not support clear") end