Hazelcast 分布式队列
Hazelcast distributed queue
在 Hazelcast 文档中,是这样说的:
Hazelcast distributed queue performs no batching while iterating over the queue. All items will be copied locally and iteration will occur locally.
http://docs.hazelcast.org/docs/3.5/manual/html/queue.html
谁能解释一下这是什么意思?
这意味着每个项目都是单独检索的,因此性能受到很大影响。一种更快的方法是检索例如10 items in 1 go,减少远程调用次数。不幸的是,这没有实现。
在 Hazelcast 文档中,是这样说的:
Hazelcast distributed queue performs no batching while iterating over the queue. All items will be copied locally and iteration will occur locally. http://docs.hazelcast.org/docs/3.5/manual/html/queue.html
谁能解释一下这是什么意思?
这意味着每个项目都是单独检索的,因此性能受到很大影响。一种更快的方法是检索例如10 items in 1 go,减少远程调用次数。不幸的是,这没有实现。