Node.js 和 ZeroMQ 之间的高级差异?
请原谅我的无知,但是(类似)node.js 与 ZeroMQ 的高级概述是什么?
Excuse my ignorance, but what is the high-level overview of (something like) node.js versus ZeroMQ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Node.js 是一个基于 V8 的 JavaScript 虚拟机——它被构建为异步 IO 的完整编程环境
ZeroMQ 是一个用于执行各种操作的库——通过任意协议进行消息队列。兼容AMQP(消息协议)并且不必有broker(中央路由服务器)。
基本上完全不同:-) 节点 http://github.com/ 甚至还有 ZeroMQ 的半功能绑定JustinTulloss/zeromq.node - 以及 ry 构建的一个更实用的 amqp - http: //github.com/ry/node-amqp
Node.js is a javascript vm based on V8 -- its built to be a full programming environment for asynchronous IO
ZeroMQ is a library for doing a variety of things -- message queueing over arbitrary protocols. Compatible with AMQP (message protocol) and does not have to have a broker (central routing server).
Basically totally different :-) There is even a half functional binding of ZeroMQ for node http://github.com/JustinTulloss/zeromq.node - and a more functional one for amqp in general that ry built - http://github.com/ry/node-amqp