A-A+

一个简单的thinkphp+redis实现秒杀功能

2017年12月04日 PHP开源系统 暂无评论 阅读 0 views 次

好久没来整理文章了,闲了没事写篇文章记录下php+redis实现商城秒杀功能。

1,安装redis,根据自己的php版本安装对应的redis扩展(此步骤简单的描述一下)

1.1,安装 php_igbinary.dll,php_redis.dll扩展此处需要注意你的php版本如图:

1.2,php.ini文件新增 extension=php_igbinary.dll;extension=php_redis.dll两处扩展

ok此处已经完成第一步redis环境搭建完成看看phpinfo

2,项目中实际使用redis

2.1,第一步配置redis参数如下,redis安装的默认端口为6379: 

  1. <?php  
  2. /* 数据库配置 */  
  3. return array(  
  4.     'DATA_CACHE_PREFIX' => 'Redis_',//缓存前缀  
  5.     'DATA_CACHE_TYPE'=>'Redis',//默认动态缓存为Redis  
  6.     'DATA_CACHE_TIMEOUT' => false,  
  7.     'REDIS_RW_SEPARATE' => true, //Redis读写分离 true 开启  
  8.     'REDIS_HOST'=>'127.0.0.1', //redis服务器ip,多台用逗号隔开;读写分离开启时,第一台负责写,其它[随机]负责读;  
  9.     'REDIS_PORT'=>'6379',//端口号  
  10.     'REDIS_TIMEOUT'=>'300',//超时时间  
  11.     'REDIS_PERSISTENT'=>false,//是否长连接 false=短连接  
  12.     'REDIS_AUTH'=>'',//AUTH认证密码   
  13. );  
  14. ?>  

2.2,实际函数中使用redis:

  1. /** 
  2.         * redis连接 
  3.         * @access private 
  4.         * @return resource 
  5.         * @author bieanju 
  6.         */  
  7.     private function connectRedis(){  
  8.         $redis=new \Redis();  
  9.         $redis->connect(C("REDIS_HOST"),C("REDIS_PORT"));         
  10.         return $redis;  
  11.     }  

2.3,秒杀的核心问题是在大并发的情况下不会超出库存的购买,这个就是处理的关键所以思路是第一步在秒杀类的先做一些基础的数据生成:

  1. //现在初始化里面定义后边要使用的redis参数  
  2. public function _initialize(){  
  3.         parent::_initialize();  
  4.         $goods_id = I("goods_id",'0','intval');        
  5.         if($goods_id){  
  6.             $this->goods_id = $goods_id;  
  7.             $this->user_queue_key = "goods_".$goods_id."_user";//当前商品队列的用户情况  
  8.             $this->goods_number_key = "goods".$goods_id;//当前商品的库存队列  
  9.         }  
  10.         $this->user_id = $this->user_id ? $this->user_id : $_SESSION['uid'];        
  11.     }  

2.4,第二步就是关键所在,用户在进入商品详情页前先将当前商品的库存进行队列存入redis如下:

  1. /** 
  2.     * 访问产品前先将当前产品库存队列 
  3.     * @access public 
  4.     * @author bieanju 
  5.     */  
  6.     public function _before_detail(){  
  7.         $where['goods_id'] = $this->goods_id;  
  8.         $where['start_time'] = array("lt",time());  
  9.         $where['end_time'] =  array("gt",time());  
  10.         $goods = M("goods")->where($where)->field('goods_num,start_time,end_time')->find();  
  11.         !$goods && $this->error("当前秒杀已结束!");  
  12.         if($goods['goods_num'] > $goods['order_num']){  
  13.             $redis = $this->connectRedis();  
  14.             $getUserRedis = $redis->hGetAll("{$this->user_queue_key}");  
  15.             $gnRedis = $redis->llen("{$this->goods_number_key}");  
  16.             /* 如果没有会员进来队列库存 */  
  17.             if(!count($getUserRedis) && !$gnRedis){              
  18.                 for ($i = 0; $i < $goods['goods_num']; $i ++) {  
  19.                     $redis->lpush("{$this->goods_number_key}", 1);  
  20.                 }  
  21.             }  
  22.             $resetRedis = $redis->llen("{$this->goods_number_key}");  
  23.             if(!$resetRedis){  
  24.                 $this->error("系统繁忙,请稍后抢购!");  
  25.             }  
  26.         }else{  
  27.             $this->error("当前产品已经秒杀完!");  
  28.         }  
  29.            
  30.     }  

接下来要做的就是用ajax来异步的处理用户点击购买按钮进行符合条件的数据进入购买的排队队列(如果当前用户没在当前产品用户的队列就进入排队并且pop一个库存队列,如果在就抛出,):

  1. /** 
  2.      * 抢购商品前处理当前会员是否进入队列 
  3.      * @access public 
  4.      * @author bieanju 
  5.      */  
  6.     public function goods_number_queue(){  
  7.         !$this->user_id && $this->ajaxReturn(array("status" => "-1","msg" => "请先登录"));  
  8.         $model = M("flash_sale");  
  9.         $where['goods_id'] = $this->goods_id;  
  10.         $goods_info = $model->where($where)->find();  
  11.         !$goods_info && $this->error("对不起当前商品不存在或已下架!");   
  12.         /* redis 队列 */    
  13.         $redis = $this->connectRedis();  
  14.         /* 进入队列  */  
  15.         $goods_number_key = $redis->llen("{$this->goods_number_key}");  
  16.         if (!$redis->hGet("{$this->user_queue_key}"$this->user_id)) {  
  17.             $goods_number_key = $redis->lpop("{$this->goods_number_key}");  
  18.         }  
  19.            
  20.         if($goods_number_key){  
  21.             // 判断用户是否已在队列  
  22.             if (!$redis->hGet("{$this->user_queue_key}"$this->user_id)) {  
  23.                 // 插入抢购用户信息  
  24.                 $userinfo = array(  
  25.                     "user_id" => $this->user_id,  
  26.                     "create_time" => time()  
  27.                 );                 
  28.                 $redis->hSet("{$this->user_queue_key}"$this->user_id, serialize($userinfo));  
  29.                 $this->ajaxReturn(array("status" => "1"));  
  30.             }else{  
  31.                 $modelCart = M("cart");  
  32.                 $condition['user_id'] = $this->user_id;  
  33.                 $condition['goods_id'] = $this->goods_id;  
  34.                 $condition['prom_type'] = 1;  
  35.         $cartlist = $modelCart->where($condition)->count();  
  36.                 if($cartlist > 0){  
  37.                     $this->ajaxReturn(array("status" => "2"));  
  38.                 }else{  
  39.                     
  40.                    $this->ajaxReturn(array("status" => "1"));  
  41.                     
  42.                 }  
  43.                    
  44.             }  
  45.                
  46.         }else{  
  47.             $this->ajaxReturn(array("status" => "-1","msg" => "系统繁忙,请重试!"));  
  48.         }  
  49.     }  

附加一个调试的函数,删除指定队列值:

  1. public function clearRedis(){  
  2.          set_time_limit(0);  
  3.          $redis = $this->connectRedis();  
  4.          //$Rd = $redis->del("{$this->user_queue_key}");  
  5.          $Rd = $redis->hDel("goods49",'用户id'');  
  6.          $a = $redis->hGet("goods_49_user", '用户id');  
  7.          if(!$a){  
  8.              dump($a);  
  9.          }  
  10.            
  11.          if($Rd == 0){  
  12.               exit("Redis队列已释放!");             
  13.          }  
  14.      }  

走到此处的时候秒杀的核心基本就完了,细节还需要自己在去完善,像购物车这边的处理还有订单的处理,好吧开始跑程序利用apache自身的ab可以进行简单的模拟并发测试如下:

跑起来,我擦跑步起来redis没有任何反应,此时还少一步重要的步骤就是开启redis服务,请根据自己的系统下一个redisbin_x32或者redisbin_x64的redis服务管理工具,点击redis-server.exe,ok至此全部完成如下图:

一个人静静坐在电脑面前写代码的感觉,那是什么感觉?那是武林高手闭关修炼的感觉。

文章链接:https://www.cnblogs.com/bieanju/p/6225722.html

标签:

给我留言