本次和大家分享的是RedisMQ队列的用法,前两篇文章队列工厂之(MSMQ)和队列工厂之RabbitMQ分别简单介绍对应队列环境的搭建和常用方法的使用,加上本篇分享的RedisMQ那么就完成了咋们队列工厂"三剑客"的目标了哈哈;Redis的作用不仅仅局限于队列,更多的一般都使用它的key,value的形式来存储session或者hash的方式存储一些常用的数据,当然这不是本章分享的内容(之前有些文章有讲过redis的使用场景和代码分享各位可以看下),这QueueReposity-队列工厂最后一篇结束后,笔者后面分享的可能是netcore方面的一些东西了,vs2017出来了简单创建netcore项目之后发现与之前的版本有些变动,例如:没有project.json,怎么配置生成跨平台程序等问题,需要一个一个学习和尝试,网上搜索的文章还很少,全靠阅读全英文的官网来学习了哈哈;希望大家能够喜欢本篇文章,也希望各位多多"扫码支持"和"推荐"谢谢!
Redis安装和RedisClient工具的使用
封装RedisMQ队列的读和写
队列工厂之RedisMQ测试用例
下面一步一个脚印的来分享:
Redis安装和RedisClient工具的使用
首先要使用redis需要下载安装Redis,这里由于之前的文章有讲解在windows下怎么搭建redis服务,所以不再赘述,各位可以点击搭建Redis服务端,并用客户端连接,因此我这里直接分享怎么使用RedisClient工具,这工具使用起来比较简单和方便,首先去这个地址下载:
http://dlsw.baidu.com/sw-search-sp/soft/a2/29740/RedisClient20140730.1406883096.exe
安装-》打开软件,能看到如图的界面:
-》点击“Server”-》Add-》输入一个昵称,你redis服务端的ip,端口-》确认即可:
这个时候你redisclient的配置工作就完成了是不是很简单啊,-》再来点击刚才创建昵称-》双击打开redis的第一个数据库db0(这里就是在没有指定数据库位置时候存储数据的地方)-》能看到你存储的数据key:
如果想看某个name的数据直接双击对应的name就行了-》这里是我redis服务存储的一个hash数据的截图:
是不是很方便,这个客户端可以直接删除你不想要的数据-》右键选中您想删除的name-》Delete即可删除:
怎么样,这个RedisClient工具学会了么,是不是挺简单的呢;
封装RedisMQ队列的读和写
到这里终于来到我们代码分享的时刻了,尽管QueueReposity-队列工厂已经开源了源码,这里还是单独分享一次只有RedisMQ的代码;首先创建一个名称为:QRedisMQ的class-》继承 PublicClass.ConfClass<T>-》再实现接口IQueue,最后就有了我们实现接口方法体代码:
/// <summary> /// RedisMQ /// </summary> public class QRedisMQ : PublicClass.ConfClass<QRedisMQ>, IQueue { private IRedisClient redis = null; public void Create() { if (string.IsNullOrWhiteSpace(this.ApiUrl) || string.IsNullOrWhiteSpace(this.UserPwd)) { throw new Exception("创建QRedisMQ队列需要指定队列:ApiUrl,UserPwd"); } this.ApiKey = string.IsNullOrWhiteSpace(this.ApiKey) ? "6379" : this.ApiKey; redis = redis ?? new RedisClient(this.ApiUrl, Convert.ToInt32(this.ApiKey), this.UserPwd); } public long Total(string name = "Redis_01") { if (redis == null) { throw new Exception("请先创建队列连接"); } if (string.IsNullOrWhiteSpace(name)) { throw new Exception("name不能为空"); } return redis.GetListCount(name); } public Message Read(string name = "Redis_01") { if (redis == null) { throw new Exception("请先创建队列连接"); } if (string.IsNullOrWhiteSpace(name)) { throw new Exception("name不能为空"); } var message = new Message(); try { message.Label = name; var result = redis.DequeueItemFromList(name); if (string.IsNullOrWhiteSpace(result)) { return message; } message.Body = result; } catch (Exception ex) { throw new Exception(ex.Message); } return message; } public bool Write(string content, string name = "Redis_01") { if (redis == null) { throw new Exception("请先创建队列连接"); } if (string.IsNullOrWhiteSpace(content) || string.IsNullOrWhiteSpace(name)) { throw new Exception("content和name不能为空"); } redis.EnqueueItemOnList(name, content); return true; } public void Dispose() { if (redis != null) { redis.Dispose(); redis = null; } } //public List<Message> ReadAll() //{ // throw new NotImplementedException(); //} }
这里用到的Redis的dll是引用了相关的nuget包:
封装的队列Redis工厂流程同样是:创建(Create)-》读(Read)|写(Write)-》释放(Dispose);有了具体的RedisMQ实现类,然后还需利用工厂模式提供的方法来创建这个类的实例:
/// <summary> /// ================== /// author:神牛步行3 /// des:该列工厂开源,包括队列有MSMQ,RedisMQ,RabbitMQ /// blogs:http://www.cnblogs.com/wangrudong003/ /// ================== /// 队列工厂 /// </summary> public class QueueReposity<T> where T : class,IQueue, new() { public static IQueue Current { get { return PublicClass.ConfClass<T>.Current; } } }
到这儿RedisMQ工厂代码就完成了,下面开始分享我们的测试用例;
队列工厂之RedisMQ测试用例
通过上面配置环境和封装自己的方法,这里写了一个简单的测试用例,分为Server(加入消息队列)和Client(获取消息队列),首先来看Server端的代码:
/// <summary> /// 队列服务端测试用例 /// </summary> class Program { static void Main(string[] args) { Redis_Server(); // RabbitMQ_Server(); //MSMQ_Server(); } private static void Redis_Server() { //实例化QRedisMQ对象 var mq = QueueReposity<QRedisMQ>.Current; try { Console.WriteLine("Server端创建:RedisMQ实例"); mq.Create(); var num = 0; do { Console.WriteLine("输入循环数量(数字,0表示结束):"); var readStr = Console.ReadLine(); num = string.IsNullOrWhiteSpace(readStr) ? 0 : Convert.ToInt32(readStr); Console.WriteLine("插入数据:"); for (int i = 0; i < num; i++) { var str = "我的编号是:" + i; mq.Write(str); Console.WriteLine(str); } } while (num > 0); } catch (Exception ex) { } finally { Console.WriteLine("释放。"); mq.Dispose(); } Console.ReadLine(); }
通过:创建(Create)-》读(Read)|写(Write)-》释放(Dispose) 的流程来使用我们的队列工厂,此时我们运行下这个Server端,然后分别录入4次参数:
能看到截图的文字描述,这些测试数据插入到了redis的队列中,下面我们通过第一节说的RedisClient工具查看数据,点击队列名称如:
通过工具能看到我们刚才插入的数据,然后我们来通过测试用例的client端读取队列,具体代码:
/// <summary> /// 队列客户端测试用例 /// </summary> class Program { static void Main(string[] args) { RedisMQ_Client(); // RabbitMQ_Client(); //MSMQ_Client(); } private static void RedisMQ_Client() { //实例化QRedisMQ对象 var mq = QueueReposity<QRedisMQ>.Current; try { Console.WriteLine("Client端创建:RedisMQ实例"); mq.Create(); while (true) { try { var total = mq.Total(); if (total > 0) { Console.WriteLine("队列条数:" + total); } var result = mq.Read(); if (result.Body == null) { continue; } Console.WriteLine(string.Format("接受队列{0}:{1}", result.Label, result.Body)); } catch (Exception ex) { Console.WriteLine("异常信息:" + ex.Message); } } } catch (Exception ex) { throw ex; } finally { Console.WriteLine("释放。"); mq.Dispose(); } }
运行生成的exe,看效果:
通过图形能看出读取队列的数据正如我们想的那样依次读取,测试用例测试RedisMQ的代码没问题;以上对封装RedisMQ的代码分享和环境搭建讲解,到这里队列工厂(MSMQ,RabbitMQ,RedisMQ)就分享完了,希望能给您带来好的帮助,谢谢阅读;