我已经阅读了一些文章(如this或this),所有这些文章都让我以同样的方式在PHP中实现长轮询(使用usleep()和循环),就像那样:
$source; // some data source - db, etc
$data = null; // our return data
$timeout = 30; // timeout in seconds
$now = time(); // start time
// loop for $timeout seconds from $now until we get $data
while((time() - $now) < $timeout) {
// fetch $data
$data = $source->getData();
// if we got $data, break the loop
if (!empty($data)) break;
// wait 1 sec to check for new $data
usleep(10000);
}
// if there is no $data, tell the client to re-request (arbitrary status message)
if (empty($data)) $data = array('status'=>'no-data');
// send $data response to client
echo json_encode($data);
还有其他方法吗?我知道PHP只是一种脚本语言,但我想基于事件而不是检查并执行或等到超时。它可能类似于Java中的 Continuations ,是完美的。
答案 0 :(得分:1)
您可以尝试使用React:http://reactphp.org/
还不是很成熟,但它可能适合您的需求。
可以实现异步。而不是进行长池化答案 1 :(得分:1)
成熟且可扩展