Redis 实现消息队列 MQ_weixin_34179968的博客-CSDN博客

来源: Redis 实现消息队列 MQ_weixin_34179968的博客-CSDN博客

Redis 2.4版本之后就内置队列的功能了,如果是日常比较简单的队列应用,可以选择Redis , 效率还很高的!!

 

Redis 还能实现 有序 和 无序 两种队列(只讨论生产者和消费者这种模式的队列):

一、有序队列:

1、生产者:

  1. $redis = new Redis();
  2. $redis->pconnect(‘127.0.0.1’, 6379);
  3. $redis->zAdd(‘MQ’, 1, ‘need to do 1’); $redis->zAdd(‘MQ’, 2, ‘need to do 2’);

2、消费者:

  1. while (true) {
  2. $pid = pcntl_fork();
  3. if ($pid == -1) {
  4. //创建子进程失败,不处理 } else if ($pid == 0) { $redis = new Redis(); $redis->connect(‘127.0.0.1’, 6379); //执行有序查询,取出排序前10进行处理 $redis->zRevRangeByScore(‘MQ’, ‘+inf’, ‘-inf’, array(‘withscores’=>false, ‘limit’=>array(0,10))); exit; } else { //主进行执行中,等待 pcntl_wait($status); } }

 

二、无序队列:

1、生产者:

  1. $redis = new Redis();
  2. $redis->pconnect(‘127.0.0.1’, 6379);
  3. $redis->LPUSH(‘MQ’, 1, ‘need to do 1’); $redis->LPUSH(‘MQ’, 2, ‘need to do 2’);

2、消费者:

  1. while (true) {
  2. $pid = pcntl_fork();
  3. if ($pid == -1) {
  4. //创建子进程失败,不处理 } else if ($pid == 0) { $redis = new Redis(); $redis->connect(‘127.0.0.1’, 6379); //执行出队处理,BLPOP是阻塞的出队方式,其实还可以用LPOP,不过用lPOP就要自行判断数据是否为空了 $mq = $redis->BLPOP(‘MQ’) //do something } else { //主进行执行中,等待 pcntl_wait($status); } }

 

简单版就是这样了~~当然,如果应用规模大,还是建议用正规的MQ,例如:RabbitMQ

赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏