Method: ActiveSupport::Cache::MemoryStore#clear

Defined in:
activesupport/lib/active_support/cache/memory_store.rb

#clear(options = nil) ⇒ Object

Delete all data stored in a given cache store.



93
94
95
96
97
98
# File 'activesupport/lib/active_support/cache/memory_store.rb', line 93

def clear(options = nil)
  synchronize do
    @data.clear
    @cache_size = 0
  end
end