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.
在 RabbtiMQ .net 客户端中创建连接是一项昂贵的操作吗?
我们有一个将消息发布到 RMQ 的 Web 应用程序,目前我们在每次发布时创建并关闭连接。
是的,创建连接很昂贵。为什么在发布后仍然要创建和关闭与兔子的连接?
我建议创建一次兔子连接,然后在需要时关闭它。
如果您保持单个连接,则发送消息会更快,因为您只需要一次操作即可发送消息。每次打开连接都会使用io资源,所以肯定会慢一些。