class ActionDispatch::RailsMetaStore

def read(key)

def read(key)
  if data = @store.read(key)
    Marshal.load(data)
  else
    []
  end
end