TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

NSQ: Open-source realtime distributed messaging, billions of messages / day

67 点作者 seansh超过 1 年前

5 条评论

bob1029超过 1 年前
Billions of messages per day is 10-100k per second on average. If you do this in a vertical on one box with something like a ring buffer abstraction, you can achieve MPSC messaging rates in excess of millions per second without trying very hard across any arbitrary # of clients.<p>E.g. <a href="https:&#x2F;&#x2F;aeron.io&#x2F;aeron-open-source&#x2F;#aeron_transport" rel="nofollow">https:&#x2F;&#x2F;aeron.io&#x2F;aeron-open-source&#x2F;#aeron_transport</a>
评论 #38935811 未加载
esafak超过 1 年前
When you would use this over Kafka, Pulsar, Kinesis, NATS, RedPanda, Fluvio, etc.?<p>I found this comparison from 2023 <a href="https:&#x2F;&#x2F;gcore.com&#x2F;learning&#x2F;nats-rabbitmq-nsq-kafka-comparison&#x2F;" rel="nofollow">https:&#x2F;&#x2F;gcore.com&#x2F;learning&#x2F;nats-rabbitmq-nsq-kafka-compariso...</a>
评论 #38942600 未加载
评论 #38932691 未加载
评论 #38933272 未加载
zerotolerance超过 1 年前
This project has been around for a long time. I made a few contributions in like 2014 or 2015. It is a great distributed stack and a semi-comfortable alternative to things like RabbitMQ. Did something new happen?
评论 #38935815 未加载
aetherson超过 1 年前
Used NSQ a bunch at an old job, it was simple and reliable, never gave us any trouble, at the scale of, yes, billions of messages per day.
vivzkestrel超过 1 年前
how is this different from zeromq, rabbitmq?