Class: Store (ActiveSupport::Cache)

Overview
Module Structure
Class Hierarchy
Instance Aliases
Store#silence?
Store#logger_off?
Instance Attributes
Store#silence [R]
Store#logger_off [R]
Instance Methods
Store#silence!
Store#mute
Store#fetch / 2
Store#read / 2
Store#write / 3
Store#delete / 2
Store#delete_matched / 2
Store#exist? / 2
Store#increment / 2
Store#decrement / 2
Store#expires_in / 1
Store#log / 3
is a submodule of
module: Cache ( ActiveSupport )
inherits from
  Object ( Builtin-Module )
is inherited by
  FileStore ( ActiveSupport::Cache )
  MemCacheStore ( ActiveSupport::Cache )
  MemoryStore ( ActiveSupport::Cache )
has properties
attribute: silence [R]   
attribute: logger_off [R]   
method: silence!   
alias: silence? silence   
alias: logger_off? logger_off   
method: mute   
method: fetch / 2   
method: read / 2   
method: write / 3   
method: delete / 2   
method: delete_matched / 2   
method: exist? / 2   
method: increment / 2   
method: decrement / 2   
method: expires_in / 1   
method: log / 3   
is defined at
#91 in active_support/cache.rb  

Overview

Module Structure

  module: <Toplevel Module>
  module: <Built-in Module>
class: Object     
  module: ActiveSupport
  module: Cache
class: Store     
class: FileStore     
class: MemCacheStore     
class: MemoryStore     

Class Hierarchy

Object ( Builtin-Module )
includes
  InstanceExecMethods ( Unknown-Module )
has properties
method: duplicable?   
method: ` / 1   
method: blank?   
method: present?   
method: presence   
method: to_param   
method: to_query / 1   
method: remove_subclasses_of / 1   
method: subclasses_of (1/2) / 1   
method: subclasses_of (2/E) / 1   
method: extended_by   
method: extend_with_included_modules_from / 1   
method: instance_exec / 2   
method: instance_variable_defined? / 1   
method: instance_values   
method: instance_variable_names   
method: copy_instance_variables_from / 2   
method: metaclass   
method: returning / 1   
method: tap   
method: with_options / 1   
method: acts_like? / 1   
method: singleton_class   
method: class_eval / 2   
method: html_safe?   
method: try / 3   
method: to_json / 1   
method: as_json / 1   
class method: method_added / 1   
class method: find_hidden_method / 1   
Store ( ActiveSupport::Cache )
has properties
attribute: silence [R]   
attribute: logger_off [R]   
method: silence!   
alias: silence? silence   
alias: logger_off? logger_off   
method: mute   
method: fetch / 2   
method: read / 2   
method: write / 3   
method: delete / 2   
method: delete_matched / 2   
method: exist? / 2   
method: increment / 2   
method: decrement / 2   
method: expires_in / 1   
method: log / 3   
  FileStore     
  MemCacheStore     
  MemoryStore     

Instance Aliases

Store#silence?

#101 in active_support/cache.rb

silence? silence   

Store#logger_off?

#102 in active_support/cache.rb

logger_off? logger_off   

Instance Attributes

Store#silence [R]

#94 in active_support/cache.rb

Store#logger_off [R]

#94 in active_support/cache.rb

Instance Methods

Store#silence!

#96 in active_support/cache.rb

silence!

Store#mute

#104 in active_support/cache.rb

mute

Store#fetch / 2

#151 in active_support/cache.rb

fetch ( key ,
  options = {} )

Store#read / 2

#181 in active_support/cache.rb

read ( key ,
  options = nil )

Store#write / 3

#200 in active_support/cache.rb

write ( key ,
  value ,
  options = nil )

Store#delete / 2

#204 in active_support/cache.rb

delete ( key ,
  options = nil )

Store#delete_matched / 2

#208 in active_support/cache.rb

delete_matched ( matcher ,
  options = nil )

Store#exist? / 2

#212 in active_support/cache.rb

exist? ( key ,
  options = nil )

Store#increment / 2

#216 in active_support/cache.rb

increment ( key ,
  amount = 1 )

Store#decrement / 2

#225 in active_support/cache.rb

decrement ( key ,
  amount = 1 )

Store#expires_in / 1

#235 in active_support/cache.rb

expires_in ( options )

Store#log / 3

#243 in active_support/cache.rb

log ( operation ,
  key ,
  options )