gpt4 book ai didi

jquery - 需要帮助设置 cometd 代码

转载 作者:搜寻专家 更新时间:2023-10-31 23:56:17 25 4
gpt4 key购买 nike

有没有人知道或认为可以将 Node.js 与 Nginx http 推送模块连接起来以保持客户端和浏览器之间的持久连接。

我是 cometd 的新手,所以只是不了解发布等,也许有人可以帮助我。

到目前为止我设置的是以下内容。我下载了 jQuery.comet 插件并设置了以下基本代码:

Client JavaScript

<script type="text/javascript">

function updateFeed(data) {
$('#time').text(data);
}

function catchAll(data, type) {
console.log(data);
console.log(type);
}

$.comet.connect('/broadcast/sub?channel=getIt');
$.comet.bind(updateFeed, 'feed');
$.comet.bind(catchAll);

$('#kill-button').click(function() {
$.comet.unbind(updateFeed, 'feed');
});
</script>

从这里我可以理解的是,客户端将继续监听后面跟有/broadcast/sub=getIt 的 url。当有消息时,它会触发 updateFeed。

非常基本且易于理解的 IMO。

Nginx http push module config

default_type 应用程序/八位字节流;发送文件;keepalive_timeout 65;push_authorized_channels_only 关闭;

server {
listen 80;
location /broadcast {
location = /broadcast/sub {
set $push_channel_id $arg_channel;
push_subscriber;
push_subscriber_concurrency broadcast;
push_channel_group broadcast;
}

location = /broadcast/pub {
set $push_channel_id $arg_channel;
push_publisher;
push_min_message_buffer_length 5;
push_max_message_buffer_length 20;
push_message_timeout 5s;
push_channel_group broadcast;
}
}
}

现在这告诉 nginx 在端口 80 上监听任何对/broadcast/sub 的调用,它会返回任何发送到/broadcast/pub 的响应。

也很基础。这部分并不难理解,并且在 Internet 上有很好的文档记录。大多数情况下,其背后有一个 ruby​​ 或 php 文件进行广播。

My idea is to have node.js broadcasting /broadcast/pub. I think this will let me have persistent streaming data from the server to the client without breaking the connection. I tried the long-polling approach with looping the request but I think this will be more efficient.

或者这行不通。

Node.js file

现在创建 Node.js 我迷路了。首先,我不知道如何让 node.js 以这种方式工作。

我用于长轮询的设置如下:

var sys = require('sys'), 
http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(new Date());
res.close();
seTimeout('',1000);
}).listen(8000);

它监听端口 8000 并只写入响应变量。

对于长轮询,我的 nginx.config 看起来像这样:

server {
listen 80;
server_name _;

location / {
proxy_pass http://mydomain.com:8080$request_uri;
include /etc/nginx/proxy.conf;
}
}

这只是将端口 80 重定向到 8000,并且工作正常。

Does anyone have an idea on how to have Node.js act in a way Comet understands it. Would be really nice and you will help me out a lot.

资源

使用过

要使用 faye,我必须安装 comet 客户端,但我想使用 Nginx 提供的客户端。这就是为什么我不只使用 faye。 nginx 使用的一个更优化。

额外

最佳答案

查看your link在我看来,所有发布/订阅工作都是由 Nginx 完成的,Ruby 代码仅用于测试它和发送消息。客户端仍在使用长轮询:

In the script above, every five seconds a publisher emits a new event to our Nginx server, which in turn, pushes the data to two subscribers which have long-polling connections open and are waiting for data. Once the message is sent to each subscriber, Nginx closes their connections and the clients then immediately re-establish them to wait for the next available message.

Nginx 用作消息的简单重新翻译器(非常聪明的设置顺便说一句,感谢您的链接)。

简而言之:浏览器不支持您尝试进行的这种连接。这就是WebSockets被发明出来。

稍后我将在 Node.js 中编写一些代码以将此设置与 Nginx 一起使用(我也对此感兴趣)。

关于jquery - 需要帮助设置 cometd 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2571519/

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