欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

.Net使用RabbitMQ中的几个细节

时间:2023-06-16

1、使用 ConnectionFactory 创建 IConnection 时,如果有多线程的情况下,比如会有多个Consumer,需要加锁,同时确保 Connection 对象唯一,可以使用单例模式。

public bool _isConnected => _connection is { IsOpen: true };

在 RabbitMQ 持久化时,可以用到 Polly 第三方库中的 Policy 做连接失败重试。

if (_isConnected) return;lock(obj){ var policy = Policy.Handle().Or ().WaitAndRetry(5, times => TimeSpan.FromSeconds(Math.Pow(2, times)), (exception, span) => { Console.WriteLine( $"rabbitmq client cannot connected、after {span.TotalSeconds:n1}、ex:{exception.Message}"); }); policy.Execute(() => { var factory = new ConnectionFactory() { HostName = "xxxxx", Port = 1000, UserName = "xxxxx", Password = "xxxxx" }; _connection = factory.CreateConnection(); Console.WriteLine("connected to rabbitmq..."); }); if (_connection.IsOpen) { _connection.ConnectionShutdown += OnConnectionShutdown; _connection.CallbackException += OnCallBackException; _connection.ConnectionBlocked += OnConnectionBlocked; } else { Console.WriteLine(" fatal error : rabbitmq connection could not be created or opened "); }}

 2、发布消息的时候 记得加 using 及时释放 channel

using var model = _connection.CreateModel();

3、消费者不能使用 using,否则在没有消息的时候会被释放掉。

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。