redis 秒杀多并发处理

网上有很多处理并发的例子 但是感觉太麻烦啦 所以凭着自己的感觉写了一个 
测试 1秒 300个请求 是通过的 
欢迎各位大神指点
学习参考 
http://doc.redisfans.com/topic/transaction.html#check-and-set
// 1乐观锁
public function optimisticlock($key){
    if(!$this->_redis->EXISTS($key)){

        return false;
    }
    $this->_redis->WATCH($key); //监听事务
    // 库存数量
    $value =  $this->_redis->get($key);
    if(!$value){

        return false;
    }
    $value = $value - 1;
    $this->_redis->MULTI;  //事务开始
     $resoult=$this->_redis->set($key,$value);
    $this->_redis->EXEC;  //事务结束
    
    return $resoult;
}
 
测试过程
huiting@USER-WangHuiTing:/opt$ http_load -p 300 -s 1 test.txt 
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
http://www.yuexing.eihoo.cn/index.php?mod=test&act=optimisticlock: byte count wrong
18764 fetches, 300 max parallel, 3.4125e+06 bytes, in 1.00005 seconds
181.864 mean bytes/connection
18763.1 fetches/sec, 3.41234e+06 bytes/sec
msecs/connect: 0.206676 mean, 2.604 max, 0.032 min
msecs/first-response: 4.53481 mean, 981.273 max, 0.188 min
15 bad byte counts
HTTP response codes:
  code 200 -- 15
  code 502 -- 18749
 
第二种方式用列表的方式 list 利用redis 的原子性 lpop 单进程 一个一个排队释放队列里面的元素
1,入库存
 
// 商品库存存redis public function set_stock($stock,$goods_id){   $key = 'seckill'.'_'.$goods_id;   for ($i=0;$i<$stock;$i++){   $this->_redis->lpush($key,1);  }  }

2,出库存

 
//秒杀出库存 public function out_stock($goods_id){   $key = 'seckill'.'_'.$goods_id;  $count = $this->_redis->lpop($key);  if(!$count){  //debug_log_write();  return false;  }   return true; } 

3.锁处理

public function lock($strMutex, $intTimeout, $intMaxTimes = 0) {
    $objRedis = new \Redis();
    $objRedis->pconnect($this->my_config['redis_server'], 6379);
    //使用incr原子型操作加锁
    $intRet   = $objRedis->incr($strMutex);
    if ($intRet === 1) {
        //设置过期时间,防止死任务的出现
        $objRedis->expire($strMutex, $intTimeout);
        return true;
    }
    if ($intMaxTimes > 0 && $intRet >= $intMaxTimes && $objRedis->ttl($strMutex) === -1) {
        //当设置了最大加锁次数时,如果尝试加锁次数大于最大加锁次数并且无过期时间则强制解锁
        $objRedis->del($strMutex);
    }

    return false;
}
$bool=$this->lock('lock_edit_userinfo_'.$user_id,1,1);
if($bool==true){
    $task_mod->adduser_task($user_id, 5, 1, 1, 0);
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值