method
delete_matched
delete_matched(matcher, options = nil)
public
Hide source
# File activesupport/lib/active_support/cache/memory_store.rb, line 23 def delete_matched(matcher, options = nil) super @data.delete_if { |k,v| k =~ matcher } end