向rabbitMQ队列添加/检索数据的最佳方法

时间:2015-08-19 11:32:30

标签: java rabbitmq

考虑这种情况:

  

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.
  1. 那么每项实施的专业缺点是什么?

  2. 这里有什么我可能会遗失的吗?

0 个答案:

没有答案