class ActiveSupport::Cache::Store

def clear(options = nil)

Some 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.
Clears 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