gpt4 book ai didi

php - 如何实现基本的 "Long Polling"?

转载 作者:IT老高 更新时间:2023-10-28 11:35:47 36 4
gpt4 key购买 nike

我可以找到很多关于长轮询如何工作的信息(例如,thisthis),但没有简单示例说明如何在代码中实现这一点。

我只能找到 cometd ,它依赖于 Dojo JS 框架,以及相当复杂的服务器系统..

基本上,我将如何使用 Apache 来处理请求,以及我将如何编写一个简单的脚本(例如,用 PHP)来“长轮询”服务器以获取新消息?

该示例不必是可扩展的、安全的或完整的,它只需要工作即可!

最佳答案

这比我最初想象的要简单。基本上你有一个页面什么都不做,直到你想要发送的数据可用(比如,一条新消息到达)。

这是一个非常基本的示例,它会在 2-10 秒后发送一个简单的字符串。三分之一的机会返回错误 404(在接下来的 Javascript 示例中显示错误处理)

msgsrv.php

<?php
if(rand(1,3) == 1){
/* Fake an error */
header("HTTP/1.0 404 Not Found");
die();
}

/* Send a string after a random number of seconds (2-10) */
sleep(rand(2,10));
echo("Hi! Have a random number: " . rand(1,10));
?>

注意:对于一个真实的站点,在像 Apache 这样的常规网络服务器上运行它会很快占用所有“工作线程”并使其无法响应其他请求。有一些方法可以解决这个问题,但它是建议在 Python 的 twisted 中编写“长轮询服务器” ,它不依赖于每个请求一个线程。 cometD是一种流行的(有多种语言版本),并且 Tornado是一个专门为此类任务制作的新框架(它是为 FriendFeed 的长轮询代码构建的)......但作为一个简单的例子,A​​pache 绰绰有余!这个脚本可以很容易地用任何语言编写(我选择了 Apache/PHP,因为它们很常见,而且我碰巧在本地运行它们)

然后,在 Javascript 中,您请求上述文件 (msg_srv.php),然后等待响应。当你得到一个时,你就根据数据采取行动。然后你请求文件并再次等待,对数据采取行动(并重复)

以下是此类页面的示例。当页面加载时,它会发送对 msgsrv.php 文件的初始请求。如果成功,我们将消息附加到#messages div,1秒后我们再次调用waitForMsg函数,触发等待。

1 秒 setTimeout() 是一个非常基本的速率限制器,没有这个它可以正常工作,但是如果 msgsrv.php always立即返回(例如,出现语法错误)——你淹没了浏览器,它很快就会死机。最好检查文件是否包含有效的 JSON 响应,和/或保持每分钟/秒的请求总数,并适当暂停。

如果页面出错,它会将错误附加到 #messages div,等待 15 秒然后重试(与我们在每条消息后等待 1 秒的方式相同)

这种方法的好处是它非常有弹性。如果客户端 Internet 连接中断,它将超时,然后尝试重新连接 - 这是轮询工作时间长短所固有的,不需要复杂的错误处理

不管怎样,long_poller.htm代码,使用jQuery框架:

<html>
<head>
<title>BargePoller</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"></script>

<style type="text/css" media="screen">
body{ background:#000;color:#fff;font-size:.9em; }
.msg{ background:#aaa;padding:.2em; border-bottom:1px #000 solid}
.old{ background-color:#246499;}
.new{ background-color:#3B9957;}
.error{ background-color:#992E36;}
</style>

<script type="text/javascript" charset="utf-8">
function addmsg(type, msg){
/* Simple helper to add a div.
type is the name of a CSS class (old/new/error).
msg is the contents of the div */
$("#messages").append(
"<div class='msg "+ type +"'>"+ msg +"</div>"
);
}

function waitForMsg(){
/* This requests the url "msgsrv.php"
When it complete (or errors)*/
$.ajax({
type: "GET",
url: "msgsrv.php",

async: true, /* If set to non-async, browser shows page as "Loading.."*/
cache: false,
timeout:50000, /* Timeout in ms */

success: function(data){ /* called when request to barge.php completes */
addmsg("new", data); /* Add response to a .msg div (with the "new" class)*/
setTimeout(
waitForMsg, /* Request next message */
1000 /* ..after 1 seconds */
);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
addmsg("error", textStatus + " (" + errorThrown + ")");
setTimeout(
waitForMsg, /* Try again after.. */
15000); /* milliseconds (15seconds) */
}
});
};

$(document).ready(function(){
waitForMsg(); /* Start the inital request */
});
</script>
</head>
<body>
<div id="messages">
<div class="msg old">
BargePoll message requester!
</div>
</div>
</body>
</html>

关于php - 如何实现基本的 "Long Polling"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/333664/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com