我正在使用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是否无意义?如果是这样,我应该将此参数设置为什么值? 感谢任何有用的建议!