跳至内容 跳至搜索

Action Dispatch Session MemCacheStore

一个使用 MemCache 实现存储的会话存储。

选项

  • expire_after - 会话在自动过期之前存储的时间长度。

方法
N
包含的模块

类公共方法

new(app, options = {})

# File actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb, line 28
def initialize(app, options = {})
  options[:expire_after] ||= options[:expires]
  super
end