建立社交网络,我正在尝试获取实时通知。目前,该站点使用setInterval每隔几秒发送一次AJAX请求。它看起来像这样:
setInterval ( function(){
url = base_dir+"/ajax/file.php";
data = "data=someData";
$.ajax({
type: "POST",
url: url,
data: data,
dataType: "json",
beforeSend: function(x) {
if(x && x.overrideMimeType) {
x.overrideMimeType("application/json;charset=UTF-8");
}
},
success: function(JSON){
// retrieve data here
}
});
}, 5000);
这完全有效,但我非常担心创建服务器过载。我尝试了彗星技术但由于某种原因它发送的请求比上面的代码多得多。 有没有其他更有用的技术来推送这些数据?
编辑: 为了实现长轮询,我使用了以下内容(使用了此处提到的示例:http://techoctave.com/c7/posts/60-simple-long-polling-example-with-javascript-and-jquery):
(function poll(){
url = base_dir+"/ajax/file.php";
data = "data=someData";
$.ajax({
type: "POST",
url: url,
data: data,
dataType: "json",
beforeSend: function(x) {
if(x && x.overrideMimeType) {
x.overrideMimeType("application/json;charset=UTF-8");
}
},
success: function(JSON){
// retrieve data here
},
complete: poll,
timeout: 5000
});
})();
我可能无法正确获得彗星原理。
PHP代码:
// Checks for new notifications, and updates the title and notifications bar if there are any
private static function NotificationsCounter (){
//self::$it_user_id = query that retrieves my id for further checks;
//$friend_requests_count = query that retrieves the friend requests count;
//$updates_count = query that retrieves the updates count;
$total_notifications = $friend_requests_count+$updates_count;
if ($total_notifications > 0) $addToTitle = "(".$total_notifications.")";
else $addToTitle = "";
if ($updates_count > 0) $counterHTML = "<span class='notification_counter' id='updates_counter' style='float: right;'>".$updates_count."</span>";
else $counterHTML = "";
$data = array("counter"=>$total_notifications,"addToTitle"=>$addToTitle,"counterHTML"=>$counterHTML,);
echo json_encode($data); // parse to json and print
}
由于Facebook也使用PHP,他们是如何做到的?
答案 0 :(得分:7)
您应该使用 websockets 。您可以连接到服务器并注册onmessage处理程序。只要服务器有任何要发送给客户端的内容,就会调用您的处理程序。不需要超时。
在浏览器中检查websocket支持。截至目前,只有Chrome,Opera和Safari支持它们。
if ('WebSocket' in window){
/* WebSocket is supported. You can proceed with your code*/
} else {
/*WebSockets are not supported. Try a fallback method like long-polling etc*/
}
连接
var connection = new WebSocket('ws://example.org:12345/myapp');
处理程序
connection.onopen = function(){
console.log('Connection open!');
}
connection.onclose = function(){
console.log('Connection closed');
}
connection.onmessage = function(e){
var server_message = e.data;
console.log(server_message);
}
文档:http://www.developerfusion.com/article/143158/an-introduction-to-websockets/
答案 1 :(得分:2)
一旦在主要浏览器中更普遍地实施Websockets,它们将成为一种方式 - 我估计至少5年。
最后我听说Facebook聊天使用彗星和一大堆服务器。如果你想要更轻量级的东西我可以想到两个选择。
缩短轮询间隔。这完全是一个用户界面问题 - 用户可能会有一个完全可以接受的体验,间隔时间长达几分钟。确切知道的唯一方法是通过用户测试,但每5秒进行一次轮询可能有点过分。无论你选择什么作为最佳间隔,如果你受到重创,这确实可以让你快速扩展 - 只需加快间隔,直到服务器停止融化。
使用HTTP验证缓存。如果服务器仅在自上次请求后内容发生更改时返回响应正文,则可以使请求更轻量级。您将不得不使用ETag或Last-Modified标头以及服务器上的轻量级修改检查系统构建自定义内容,但它可能会节省几个字节。