Class: ActiveSupport::Cache::NullStore

Inherits:
Store
  • Object
show all
Defined in:
lib/active_support/cache/null_store.rb

Instance Method Summary collapse

Instance Method Details

#delete_entry(name, options) ⇒ Object



9
10
# File 'lib/active_support/cache/null_store.rb', line 9

def delete_entry(name, options)
end

#read_entry(name, options) ⇒ Object



4
5
6
# File 'lib/active_support/cache/null_store.rb', line 4

def read_entry(name, options)
  return nil
end

#write_entry(name, value, options) ⇒ Object



7
8
# File 'lib/active_support/cache/null_store.rb', line 7

def write_entry(name, value, options)
end