考虑这种情况:
在
RabbitMQ
和每个队列中不断创建和填充不同的队列 必须一次最多使用 ONE 主题
请注意,这仍处于设计阶段,但将使用Java编码(不是它应该有所不同):
我可以想到两种方法:
编剧:
for each incoming info do:
create a new channel with a given queuname then write data MQ using this channel
阅读器:
for each Thread t do:
create a new Channel for a next queue name and pass the Channel to t
_______________________或_______________________
create one channel
编剧:
for each incomming data do:
get the queue name for data and write to mq using already difined channel
阅读器:
for each Thread t do:
assign next queue name to t , so it uses one single channel to retrieve data.
那么每项实施的专业和缺点是什么?
这里有什么我可能会遗失的吗?