Devise/Warden/Rails:服务器端会话存储
我在 Rails 应用程序中使用 Devise,我可以通过 user_session< 设置会话数据/代码> 哈希。但所有会话数据都存储在 cookie 中,这会导致网络开销,并且当数据大于 4KB 时可能容易损坏。
我更愿意将会话数据存储在服务器端,例如数据库、memcached,甚至内存中(我不太担心负载平衡问题)。在我重新发明轮子之前,是否有一些既定的方法可以做到这一点?
(我知道我可以简单地将字段添加到用户模型中,但我更愿意只拥有一个 [JSON 序列化] 自由格式哈希或类似的内容以保持简单。)
I'm using Devise in a Rails application, and I can set session data through the user_session
hash. But all the session data is stored in a cookie, which causes network overhead and is potentially breakage-prone when the data gets larger than 4KB.
I'd much rather like to store session data on the server side, for example in the database, memcached, or even in memory (I'm not so worried about problems with load balancing). Before I go reinvent the wheel, is there some established way to do this?
(I know I could simply add fields to the user model, but I'd much rather like to just have a [JSON-serialized] free-form hash or so to keep it simple.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找 ActiveRecordStore。这是 Rails 文档。
You are looking for ActiveRecordStore. Here is the rails documentation.