HTTP 推送到 Unix 主机
是否可以使用 comet 或类似的东西通过 HTTP 将某些内容(可能是文本片段)推送到 n 个(1000 个)Unix 主机?
基本上我的要求是一次性将一个文本文件传输到多个 Unix 主机;目前我正在使用 SSH,它相当慢:(
我想通过 wget/curl 进行轮询,但这会导致大量不需要的流量。
请问有什么见解吗?
Is it possible to push something (maybe a text snippet) to n number(1000s) of Unix hosts over HTTP using comet or something like that?
Basically my requirement is to transfer a text file to multiple Unix hosts at one go; currently I am using SSH and its rather slow :(
I thought to cron a poll through wget/curl but that causes lots of unwanted traffic.
Any insights please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 Udpcast - 可能不是您要找的。这是关于使用它的某人的博客。
Take a look at Udpcast - might of might not be what you are looking for. Here is some guy's blog about using it.
Comet 与此无关,每个客户端仍然有自己的连接。如果您可以控制网络,则可以使用多播一次性发送它。或者,如果您可以控制客户端,则可以让它们全部转发给对方,以分散第一台电脑的负载。
Comet is unrelated to this, each client will still have its own connection. If you have control of the network you could use multicast to send it in one go. Or if you have control of the clients you could have them all forward it to each other to spread the load out from the first pc.