module ActiveSupport::Cache::MonetaStore::Rails5Support
Before Rails 6.1, the ‘*_entry` methods didn’t use keyword args
Public Instance Methods
delete_entry(key, options)
click to toggle source
Calls superclass method
# File lib/active_support/cache/moneta_store.rb, line 156 def delete_entry(key, options) super(key, **options) end
read_entry(key, options)
click to toggle source
Calls superclass method
# File lib/active_support/cache/moneta_store.rb, line 148 def read_entry(key, options) super(key, **options) end
read_multi_entries(names, options)
click to toggle source
Calls superclass method
# File lib/active_support/cache/moneta_store.rb, line 160 def read_multi_entries(names, options) super(names, **options) end
write_entry(key, entry, options)
click to toggle source
Calls superclass method
# File lib/active_support/cache/moneta_store.rb, line 152 def write_entry(key, entry, options) super(key, entry, **options) end
write_multi_entries(hash, options)
click to toggle source
Calls superclass method
# File lib/active_support/cache/moneta_store.rb, line 164 def write_multi_entries(hash, options) super(hash, **options) end