method
delete_matched
v3.0.0 -
Show latest stable
- Class:
ActiveSupport::Cache::MemoryStore
delete_matched(matcher, options = nil)public
No documentation available.
# File activesupport/lib/active_support/cache/memory_store.rb, line 103
def delete_matched(matcher, options = nil)
options = merged_options(options)
instrument(:delete_matched, matcher.inspect) do
matcher = key_matcher(matcher, options)
keys = synchronize { @data.keys }
keys.each do |key|
delete_entry(key, options) if key.match(matcher)
end
end
end