Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 RabbitMQ 将图像从客户端传输到服务器。然而,无论我读到什么,我都明白 RabbitMQ 只能传输文本流。那么如何传输图像呢?
amqp body 是一个缓冲区,你可以发送你想要的。
一般来说,如果你想发送一个文件,你必须读取它并发送缓冲区。
您应该使用更多发布来发送文件,而不仅仅是一个,然后在消费者端重新创建文件。
您应该避免发送大缓冲区。