如何使用金字塔覆盖默认会话超时 +金字塔烧杯 +烧杯

发布于 2024-12-07 10:34:03 字数 270 浏览 2 评论 0原文

我正在使用金字塔创建一个网络应用程序。然后,我使用金字塔烧杯将烧杯连接到金字塔的会话管理系统中。

有两个值会影响用户会话的持续时间。

  1. 会话cookie超时
  2. 磁盘/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.

  1. The session cookie timeout
  2. 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 技术交流群。

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

发布评论

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

评论(2

非要怀念 2024-12-14 10:34:03

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.

留一抹残留的笑 2024-12-14 10:34:03

我有一个解决方案。它很旧但是可以用。

I have a solution. Its old but works.

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