我正在 centos 5.5 中的 rabbitmq 中测试 c 客户端。如果我想使用扇出交换将消息推送到每个队列,应该如何设置参数routingkey?
函数 amqp_basic_publish 如下所示:
amqp_basic_publish(amqp_connection_state_t state,
amqp_channel_t channel,
amqp_bytes_t exchange,
amqp_bytes_t routing_key,
amqp_boolean_t mandatory,
amqp_boolean_t immediate,
amqp_basic_properties_t const *properties,
amqp_bytes_t body)
使用扇出交换时参数routing_key是否无意义?如果是这样,我应该将此参数设置为什么值?
感谢您提供任何有用的建议!