NoSql学习之路一redis做消息队列

前端之家收集整理的这篇文章主要介绍了NoSql学习之路一redis做消息队列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

nosql最近很火,我也研究研究,呵呵,今天来说说redis,简单的那些增删改查 就不说了,网上太多了,我研究了一下,redis做消息队列

首先是用的redis的发布订阅做的消息队列实现消息队列,

测试是在本机做的,redis在虚拟机2003的系统,386M内存,本机是8.1的系统,6g内存

我是用了500个线程模拟并发每个线程发布500条数据,在发布消息的时候,服务器的内存占用并不高,cpu占有率挺高的

这是每个线程用的时间,都差不多3 4秒


另一端用sqlserver保存消息,结果插到24万左右的时候报错了,原来是日志文件太大了,超过1G了,而数据库文件只有50M,时间大概用了20多分钟吧,

今天又用mongodb试了一下,效率比sqlserver高很多,只用了56秒就ok,对了我保存消息的时候,只用一个线程

下面上代码

发布端

  1. namespace publish
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. for (int b = 0; b < 500; b++)
  8. {
  9. Thread thread = new Thread(new ThreadStart(() =>
  10. {
  11. RedisClient redisClient = RedisClientFactory.Instance.CreateRedisClient("192.168.189.134",6379);
  12. Stopwatch stopwatch1 = new Stopwatch();
  13. stopwatch1.Start();
  14. for (int i = 0; i < 500; i++)
  15. {
  16. UserInfo userInfo = new UserInfo();
  17. userInfo.Age = 1000;
  18. userInfo.Name = "XX";
  19. userInfo.I = i;
  20. userInfo.ThreadId = Thread.CurrentThread.ManagedThreadId;
  21. redisClient.Publish("aa",Encoding.Default.GetBytes("XX在广播 频道:aa线程:"+Thread.CurrentThread.ManagedThreadId.ToString()));
  22. }
  23. stopwatch1.Stop();
  24. Console.WriteLine("aa用时:" + stopwatch1.ElapsedMilliseconds + "毫秒");
  25. }));
  26. thread.Start();
  27. }
  28. Console.ReadKey();
  29. }
  30. }
  31.  
  32.  
  33. class UserInfo
  34. {
  35. public string Name { get; set; }
  36. public int Age { get; set; }
  37. public int ThreadId { get; set; }
  38. public int I { get; set; }
  39. }
  40.  
  41. }

接受端,
  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. RedisClient Redis = RedisClientFactory.Instance.CreateRedisClient("192.168.189.134",6379);//redis服务IP和端口
  6. Redis.Subscribe(new string[] { "it","aa" });
  7. Thread thread = new Thread(() =>
  8. {
  9. Recode recode = new Recode();
  10. while (true)
  11. {
  12. byte[][] bb =
  13. Redis.ReceiveMessages();
  14. Mongo.Insert(new r()
  15. {
  16. message1 = Encoding.Default.GetString(bb[0]),message2 = Encoding.Default.GetString(bb[1]),message3 = Encoding.Default.GetString(bb[2]),date=DateTime.Now
  17. });
  18. }
  19. });
  20. thread.Start();
  21. Console.WriteLine("OK");
  22. Console.ReadKey();
  23. }

sqlserver保存方法
  1. public void Insert(string message1,string message2,string message3)
  2. {
  3.  
  4. using (sqlConnection connection = new sqlConnection("server=localhost;database=ThreeLayer;Integrated Security=true"))
  5. {
  6. connection.Open();
  7. using (sqlCommand command = new sqlCommand("insert into redis(Date,Message1,Message2,Message3) values(@d,@m1,@m2,@m3)",connection))
  8. {
  9. command.Parameters.Add(new sqlParameter("@d",DateTime.Now));
  10. command.Parameters.Add(new sqlParameter("@m1",message1));
  11. command.Parameters.Add(new sqlParameter("@m2",message2));
  12. command.Parameters.Add(new sqlParameter("@m3",message3));
  13. command.ExecuteScalar();
  14. }
  15. }
  16. }

mongodb保存
  1. public static void Insert(r r)
  2. {
  3. string connStr = ConfigurationManager.AppSettings["MongoServerSettings"];//获取连接字符串
  4.  
  5. MongoServer _server = MongoServer.Create(connStr);//创建mongodb服务对应的对象
  6.  
  7. MongoDatabase _db = _server.GetDatabase("test2");//获取数据库,如果没有,会自动创建一个
  8. var collectionName = typeof(r).Name;//指定集合的名字
  9. var collection = _db.GetCollection<r>(collectionName);//获取集合,如果集合不存在,那么直接创建一个
  10. collection.Insert(r);//将数据插入到 集合里面去
  11. }
今天到此结束,欢迎小伙伴,提意见

猜你在找的NoSQL相关文章