class ActiveSupport::Cache::Store

def clear(options = nil)

All implementations may not support this method.

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