Namespace
Methods
N
R
W
Class Public methods
new(store = Rails.cache)
# File actionpack/lib/action_dispatch/http/rack_cache.rb, line 11
def initialize(store = Rails.cache)
  @store = store
end
resolve(uri)
# File actionpack/lib/action_dispatch/http/rack_cache.rb, line 7
def self.resolve(uri)
  new
end
Instance Public methods
read(key)
# File actionpack/lib/action_dispatch/http/rack_cache.rb, line 15
def read(key)
  if data = @store.read(key)
    Marshal.load(data)
  else
    []
  end
end
write(key, value)
# File actionpack/lib/action_dispatch/http/rack_cache.rb, line 23
def write(key, value)
  @store.write(key, Marshal.dump(value))
end