如何让我的“会议”顺利进行永不过期?
我正在使用 Zend 框架。
我想做类似的事情,当您不是注册用户时,只要删除所有 cookie,您就可以保留您的帐户。
我知道该会话 <> cookie,但是最好的方法是什么?
顺便说一句,我正在使用 memcached,因为我计划在前端之间共享会话。
有这方面的建议吗?因为 memcached 数据是不稳定的。
我可以需要将它们存储在数据库中吗?
I'm using Zend Framework.
I want to do something similar to SO, when you are not a registered user, you keep your account as long as you remove all your cookies.
I know that session <> cookies, however what will be the best way to do that?
By the way, I'm using memcached because I plan to share sessions between frontend.
Is there any recommendations about this? because memcached data are volatile.
May I need to store them in a database instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个可能的解决方案是在检查用户是否已通过身份验证后在每个请求中调用
Zend_Session::rememberMe()
。希望有帮助,
A possible solution could be calling
Zend_Session::rememberMe()
in each request, once you have checked that the user is authenticated.Hope that helps,