英文: Whether to create connection every time when amqp.Dial is threadsafe or not in go lang 问题 根据Rabb...
如何在Go语言中发布和消费make(map[string]string)在RabbitMQ中。
英文: How to publish and consume make(map[string]string) in rabbitmq go lang 问题 我有多个键值对类型的对象,我需要将它们发送到...
将接口{}反射为具体类型,然后执行类型断言。
英文: Unmarshaling Into an Interface{} and Then Performing Type Assertion 问题 我通过rabbitmq消息系统获取一个string...
RabbitMQ 轮询
英文: RabbitMQ Round Robin 问题 我正在尝试构建一个系统,其中一个主服务创建一系列消息,并根据路由键将它们路由到正确的队列。我已经实现了这个功能,并且工作/从属方面正在消费这些消...
How can I acknowledge a Rabbitmq message using the message id only (in Go)?
英文: How can I acknowledge a Rabbitmq message using the message id only (in Go)? 问题 我构建了一个小型服务器(使用gol...
在未发送”NACK”之前移除队列会导致我的应用程序冻结。
英文: Removing queue before nack freezes my app 问题 我对RabbitMQ还不太熟悉,我想知道在我ack一个队列之前删除队列时,处理错误的最佳方法是什么。 ...
Go amqp方法列出当前声明的所有队列的方式是什么?
英文: Go amqp method to list all currently declared queues? 问题 我正在使用streadway/amqp库将RabbitMQ与我们的警报系统进行...
如何验证发布者确认行为
英文: How do I verify publisher acknowledge behavior 问题 我正在使用发布者确认编写一个Go程序,并且我想验证当消息可以被传递/无法传递给代理时的行为。...
在Go API中,一个连接是否可以支持多个通道?
英文: Could one connection support multiple channels in go api for rabbitmq? 问题 package main import ( ...
some questions about channel in go
英文: some questions about channel in go 问题 1-什么条件会导致chan中断? deliveries <-chan amqp.Delivery for d ...
13