module ActiveSupport::Cache::Strategy::LocalCache

def clear(options = nil) # :nodoc:

:nodoc:
def clear(options = nil) # :nodoc:
  return super unless cache = local_cache
  cache.clear(options)
  super
end