用于 pub/sub 的 coherence/memcache/AppFabric
寻找有关使用内存缓存服务器进行发布/订阅的建议/优点/缺点,特别是在高吞吐量系统(每秒更新1000次)的情况下,
一致性似乎将发布/订阅作为用例,不确定其他用
例喜欢获得一些现实世界的意见!
Looking for advice/pro's/con's on using the memory cache servers for pub/sub esp wrt a high-throughput system ( 1000's of updates/sec )
Coherence seems to have pub/sub as a use-case, not sure about the others
Would love to get some real-world input !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要的是 pub/sub,您还可以使用消息传递解决方案,例如 RabbitMQ。非常高的吞吐量和良好的扩展性。
订阅队列并对发布到队列的消息做出反应。通常可以使用多种语言的客户端库,这使得这些系统也可用于跨平台分发。
If it's pub/sub you're after you can also use a messaging solution such as RabbitMQ. Very high throughput and scales well.
Subscribe to a queue and react to messages published to them. Client libraries for a variety of languages are usually available making these systems useful for cross-platform distribution as well.
我希望您提供 Hazelcast 分布式主题。非常轻量级的分布式发布/订阅消息系统。每秒 1000 次更新根本不算什么。
I would like you to offer Hazelcast Distributed Topic. Very light weight distributed pub/sub messaging system. 1000 updates/sec isn't much at all.