class ActiveSupport::Cache::Store

def initialize(options = nil)

namespace for the cache.
except for :namespace which can be used to set the global
Create a new cache. The options will be passed to any write method calls
def initialize(options = nil)
  @options = options ? options.dup : {}
end