如何使用金字塔覆盖默认会话超时 +金字塔烧杯 +烧杯
我正在使用金字塔创建一个网络应用程序。然后,我使用金字塔烧杯将烧杯连接到金字塔的会话管理系统中。
有两个值会影响用户会话的持续时间。
- 会话cookie超时
- 磁盘/memcache/rdbms/等上的实际会话生命周期
我目前必须默认cookie(通过标准烧杯配置)以在浏览器关闭时删除。我设置了 2 小时后清除的会话数据。这工作得很好。
我需要知道的是如何将 cookie 的超时和会话超时覆盖为 30 天或其他任意值。
I am using pyramid to create a web application. I am then using pyramid-beaker to interface beaker into pyramid's session management system.
Two values affect the duration of a user's session.
- The session cookie timeout
- The actual session's life time on either disk/memcache/rdbms/etc
I currently have to cookie defaulted (via the standard beaker config) to delete when the browser closes. I have the session data set to clear out after 2 hours. This works prefectly.
What I need to know is how to override the cookie's timeout and the session timeout to both be 30 days or some other arbirtrary value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
beaker 不支持更改超时。如果您试图让会话保持那么长时间,您可能应该将其放入单独的 cookie 中。一个常见的用例是登录时的“记住我”复选框。这可以帮助您跟踪用户是谁,但通常实际会话不应该停留那么长时间并重新创建。
Changing the timeout isn't supported by beaker. If you are trying to make a session stick around that long, you should probably just put it into a separate cookie. A common use-case is the "remember me" checkbox on login. This helps you track who the user is, but generally the actual session shouldn't be sticking around that long and gets recreated.
我有一个解决方案。它很旧但是可以用。
I have a solution. Its old but works.