redis队列生产消费php,redis 队列 生产者 消费者模式

1.

生产者:

//publish.php

$redis = new Redis();

$redis->pconnect('10.10.10.252',6379);

$redis->auth('rds!2016!FD');

for($i=1;$i<=10;$i++){

//$redis->publish('chan-1', 'hello, world!'.$i); // send message to channel 1.

//$redis->publish('chan-2', 'hello, world2!'.$i); // send message to channel 2.

$key = "key1";

$msg = "hello world - ".$i;

$redis->lpush($key, $msg);

}

print "\n";

$redis->close();

//redisDao.lpush(key, msg);

?>

消费者:(多个,争抢模式)

//publish.php

$redis = new Redis();

$redis->pconnect('10.10.10.252',6379);

$redis->auth('rds!2016!FD');

$key = "key1";

while (true) {

//echo 1;

// block invoke

$msgs = $redis->brpop($key,2);

if ( $msgs == null) continue;

var_dump($msgs);

}

?>

2.考虑到失败情况: 消费者(保存到list key2,如果其他的操作成功,从key2中删除 添加的数据。)

//publish.php

$redis = new Redis();

$redis->pconnect('10.10.10.252',6379);

$redis->auth('rds!2016!FD');

/*

$key = "key1";

while (true) {

//echo 1;

// block invoke

$msgs = $redis->brpop($key,2);

if ( $msgs == null) continue;

var_dump($msgs);

}

*/

while(true){

$data = $redis->brpoplpush('key1','key2', 30);

var_dump($data); //data1

$dd = $redis->lrange('key2',0,-1);

var_dump($dd);

//some process

$redis->lrem('key2',$data);

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值