Node.js中connect-redis过期会话的回调函数

发布于 2024-10-25 12:25:45 字数 98 浏览 1 评论 0原文

我在 node.js 上使用 Connect 并使用 connect-redis 作为会话存储。有没有办法在会话过期时将回调函数附加到事件,以便我可以在删除会话之前备份会话中的数据?

I am using Connect on node.js with connect-redis as session store. Is there a way to attach a callback function to the the event when the session expires, so I can backup data from the session, before it gets deleted?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

混浊又暗下来 2024-11-01 12:25:45

这是不可能的,因为过期是在redis端完成的。 connect-redis 会话存储使用 setex

https://github.com/visionmedia/connect -redis/blob/master/lib/connect-redis.js#L80

您可以设置一个疯狂的 maxAge 并使用 setInterval 自己进行过期操作

,或者

分叉模块 :)

Its impossible because the expiration is done at redis side. The connect-redis session store uses setex.

https://github.com/visionmedia/connect-redis/blob/master/lib/connect-redis.js#L80

You can set a insane maxAge and do expiration by yourself using setInterval

OR

Fork the module :)

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