如何统计在线用户数
可能的重复:
谁在 Pylons 中在线
我们有一个关于塔的项目。现在的任务是统计该网站上的所有用户。使用会话执行此操作是行不通的,因为会话的生命周期大约为一天。我该怎么办?
Possible Duplicate:
Who's Online in Pylons
We have a project on the pylons. And now the task is to count all users are on the site. Do this with a session does not work, because the lifetime of the session for about a day. How can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我的项目中(但在 django 中),我将用户 ID 和上次请求的时间存储在数据库中,并显示最后 5 分钟的所有用户。
In my project (but in django), I'm store user id in database with time of last request and show all users for last 5 minute.