Devise/Warden/Rails:服务器端会话存储

发布于 2024-10-19 12:08:32 字数 366 浏览 5 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那一片橙海, 2024-10-26 12:08:32

您正在寻找 ActiveRecordStore。这是 Rails 文档

You are looking for ActiveRecordStore. Here is the rails documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文