本文介绍了你知道有哪些项目使用了 ZeroMQ?成功和失败的故事都很有价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对在项目中使用 ZeroMQ 感兴趣,但我想听听其他人的经验.我做了一些搜索,但只找到了 mongrel2 项目.您是否听说过使用它的其他项目?哪些公司在生产中使用 ZeroMQ?
I'm interested in using ZeroMQ in a project, but I'd like to hear about other's experience with it. I did some searching but found only mongrel2 project. Have you heard about other projects where it is used? What companies use ZeroMQ in production?
推荐答案
我们用 ZeroMQ 替换了 Unix 命名管道的使用.通信开销同样不明显.我们还获得了额外的好处:
We replaced usage of Unix named pipes with ZeroMQ. The communication overhead is equally not noticeable. And we got additional benefits:
- 邮件大小没有限制.
- 能够将消息发送到远程邮箱.
- 无需为非阻塞发送编写我们自己的线程.
- 能够接收来自多个来源的消息.
这篇关于你知道有哪些项目使用了 ZeroMQ?成功和失败的故事都很有价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!