PHP会话管理,用Cookie统计用户
我想在加载页面时在用户的浏览器中存储一个 cookie。然后,使用 AJAX 计算使用该 cookie 的用户数量,并每隔 1 秒左右将其发送到数据库行。这是如何实现的?
I want to, upon loading the page, store a cookie in the user's browser. Then, using AJAX, count the number of users with that cookie and send it off to a database row every 1 second or so. How is this accomplished?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于听起来您正在实现一个聊天室,因此可以安全地假设正在进行一些 AJAXy 轮询(客户端非常频繁地检查更新)。
一种方法可能是在数据库中保留一个 active_sessions 表。 像这样:
每次客户端请求更新时,插入/更新其会话 ID 的行,然后定期删除时间戳早于 T 的任何记录(对于 T 的某些值,例如 30 秒或其他)
它可能看起来 表中的行可以很好地估计有多少客户端仍然处于活动状态。
Since it sounds like you're implementing a chat room, it's safe to assume there's some AJAXy polling going on (clients are checking for updates very frequently).
One approach might be to keep an active_sessions table in your database. It might look like this:
Every time a client asks for an update, insert/update the row for their session ID, and then regularly delete any records with a timestamp older that T (for some value of T like 30 seconds or something)
Count the rows in the table to get a pretty good estimate of how many clients are still active.
看看我的一篇帖子!
在php中的数据库中设置会话
就在您存储数据时向 mysql 添加时间戳并计算时间 > 的唯一行数时间()=30;延迟 30 秒。
Take a look at one of my posts!
set session in database in php
Just when your storing the data add a timestamp to mysql and count the unique rows where the time > time()=30; for a 30 second delay.