首先,我要感谢你们所有对新程序员如此有帮助的伟大人物。
我有一个关于长轮询的问题。我研究了一些关于Comet Programming 的长轮询技术的文章。该方法对我来说似乎很难,因为它有时还需要在服务器端安装一些脚本。
现在我找到了一个关于长轮询的例子。它工作得很好,但我不确定它是否是正确的方法。示例脚本是关于一个类似聊天的应用程序。这个 php 脚本的工作原理如下:
- php 脚本不断检查 data.txt 文件,直到它被更改。
- 只要更改了data.txt,就会在网页上输出新的文本。
这是php脚本:
<?php
$filename = dirname(__FILE__).'/data.txt';
// store new message in the file
$msg = isset($_GET['msg']) ? $_GET['msg'] : '';
if ($msg != '')
{
file_put_contents($filename,$msg);
die();
}
// infinite loop until the data file is not modified
$lastmodif = isset($_GET['timestamp']) ? $_GET['timestamp'] : 0;
$currentmodif = filemtime($filename);
while ($currentmodif <= $lastmodif) // check if the data file has been modified
{
usleep(500000); // sleep 500ms to unload the CPU
clearstatcache();
$currentmodif = filemtime($filename);
}
// return a json array
$response = array();
$response['msg'] = file_get_contents($filename);
$response['timestamp'] = $currentmodif;
echo json_encode($response);
flush();
?>
我不包括网页代码以保持问题简单。该网页只有一个 div,它在更改时显示 data.txt 的文本。
我的问题的要点是:
- 这种循环方法是长轮询服务器的正确方法吗?
- 此外,当服务器正在执行
sleep();
其他同时请求时会发生什么? - 由于长轮询的连续脚本,是否有任何技术可以减少服务器负载?
- 如果启动此长轮询请求的客户端断开连接,我们如何知道并相应地停止该断开连接客户端的脚本?
请指导我解决这个问题...谢谢