instance method
delete_multi_entries
Ruby on Rails edge
Since edge Private — implementation detail, not part of the public APISignature
delete_multi_entries(entries, **options)
No documentation comment.
Parameters
-
entriesreq -
optionskeyrest
Source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 285
def delete_multi_entries(entries, **options)
return 0 if entries.empty?
rescue_error_with(0) do
@data.with { |c| c.delete_multi(entries) }
end
end
Defined in activesupport/lib/active_support/cache/mem_cache_store.rb line 285
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::MemCacheStore