Method: ActiveSupport::Cache::MonetaStore#clear

Defined in:
lib/active_support/cache/moneta_store.rb

#clear(options = nil) ⇒ Object



26
27
28
29
30
31
# File 'lib/active_support/cache/moneta_store.rb', line 26

def clear(options = nil)
  options = merged_options(options)
  instrument(:clear, nil, nil) do
    @store.clear(moneta_options(options))
  end
end