环境:wamp,redis
要求:安装wamp,redis,以及为php安装redis扩展
秒杀功能大致思路:获取缓存列表的长度,如果长度(llen)等于0,就停止秒杀,即秒杀失败,如果长度大于0,则继续运行,先从缓存中移除一个元素(lpop),再进行数据库操作(添加订单表,商品库存数量减一),如果再进一个人秒杀,就再走一遍流程,循环往复。
打开phpinfo.php,查看php版本,我的是php7.3.4,还有一个需要注意architecture x64
根据自己环境,选择合适的版本
解压下载的压缩包,并把php_redis.dll、php_redis.pdb和php_igbinary.dll、php_igbinary.pdb四个文件,移至自己php版本对应目录下的ext文件夹下e:\phpstudy_pro\extensions\php\php7.3.4nts\ext
添加如下代码:
extension=php_igbinary.dllextension=php_redis.dll
如果有这两句可以把前面的分号删掉,没有就自己添加上,要注意顺序,php_igbinary.dll 要在php_redis.dll 前面
重启后,再运行phpinfo.php,查看是否安装成功
一共三张表,ab_goods商品表,ab_order订单表,ab_log日志表
<?phpnamespace app\index\controller;u think\controller;u think\db;u think\cache\driver\redis;class miaosha extends controller{ private $redis = null; private $cachekey = null; //缓存变量名 private $basket = []; //私有数组,存放商品信息 private $store = 50; /** * 购物车初始化,传入用户id */ public function __construct() { parent::__constru大学生当兵政策ct(); $this->redis = new \redis(); // 实例化 $this->redis->connect('127.0.0.1','6379'); $this->redis->auth('zxf123456'); } /** * 秒杀初始化 */ public function ms_init() { // 删除缓存列表 $this->redis->del($this->cachekey); $英语分类len = $this->redis->llen($this->cachekey); $count = $this->store - $len; for ($i=0; $i < $count; $i++) { // 向库存列表推进50个,模拟50个商品库存 $this->redis->lpush($thi大专英语s->cachekey,1); } echo "库存初始化完成:".$this->redis->llen($this->cachekey); } /** * 秒杀入口 */ public function index() { $id = 1; //商品编号 if (empty($id)) { // 记录失败日志 return $this->writelog(0,'商品编号不存在'); } // 计算库存列表长度 $count = $this->redis->llen($this->cachekey); // 先判断库存是否为0,为0秒杀失败,不为0,则进行先移除一个元素,再进行数据库操作 if ($count == 0) { //库存为0 $this->writelog(0,'库存为0'); echo "库存为0"; exit; }el{ // 有库存 //先移除一个列表元素 $this->redis->lpop($this->cachekey); $ordersn = $this->build_order_no(); //生成订单 $uid = rand(0,9999); //随机生成用户id $status = 1; // 再进行数据库操作 $data = db::table('ab_goods')->field('count,amount')->where('id',$id)->find(); //查找商品 if (!$data) { return $this->writelog(0,'该商品不存在'); } $inrt_data = [ 'order_sn' => $ordersn, 'ur_id' => $uid, 'goods_id' => $id, 'price' => $data['amount'], 'status' => $status, 'addtime' => date('y-m-d h:i:s') ]; // 订单入库 $result = db::table('ab_order')->inrt($inrt_data); // 自动减少一个库存 $res = db::table('ab_goods')->where('id',$id)->tdec('count'); if ($res) { echo "第".$count."件秒杀成功"; $this->writelog(1,'秒杀成功'); }el{ echo "第".$count."件秒杀失败"; $this->writelog(0,'秒杀失败'); } } } /** * 生成订单号 */ public function build_order_no() { return date('ymd').substr(implode(null, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8); } /** * 生成日志 1成功 0失败 */ public function writelog($status = 1,$msg) { $data['count'] = 1; $data['status'] = $status; $data['addtime'] = date('y-m-d h:i:s'); $data['msg'] = $msg; return db::table('ab_log')->inrtgetid($data); }}
使用apache压力测试工具 ab 测试,模拟多用户秒杀商品,模拟60秒内发起3000个请求,并发600次,秒杀50个库存商品
ab测试相关参数说明
-r 指定接收到错误信息时不退出程序-t 等待响应的最大时间-n 指定压力测试总共的执行次数-c 用于指定压力测试的并发数1.初始化50个库存,运行ms_init方法
2.测试 命令行:
e:\phpstudy_pro\extensions\apache2.4.39\bin>ab -r -t 60 -n 3000 -c 1000 http://gouwuche.zxf/index/miao初唐四杰是哪四杰sha/index
3.检测数据库数据
日志表状态为1(秒杀成功)的数据有50人,订单表里的订单数也是50条,商品表里的商品数量变成了0(测试之前是50),商品秒杀成功完成!
如果不用redis而是直接用mysql的话,商品表订单的数量count会变成负数,而秒杀成功的人数也多余50人,订单表里的订单数量也多余50条(新测),下面是直接用mysql的例子;
public function sqlms() { $id = 1; //商品编号 $count = 50; $ordersn = $this->build_order_no(); //生成订单 $uid = rand(0,9999); //随机生成用户id $status = 1; // 再进行数据库操作 $data = db::table('ab_goods')->field('count,amount')->where('id',$id)->find(); //查找商品 // 查询还剩多少库存 $rs = db::table('ab_goods')->where('id',$id)->value('count'); if ($rs <= 0) { $this->writelog(0,'库存为0'); }el合肥高校{ $inrt_data = [ 'order_sn' => $ordersn, 'ur_id' => $uid, 'goods_id' => $id, 'price' => $data['amount'], 'status' => $status, 'addtime' => date('y-m-d h:i:s') ]; // 订单入库 $result = db::table('ab_order')->inrt($inrt_data); // 自动减少一个库存 $res = db::table('ab_goods')->where('id',$id)->tdec('count'); if ($res) { echo "第".$data['count']."件秒杀成功"; $this->writelog(1,'秒杀成功'); }el{ echo "第".$data['count']."件秒杀失败"; $this->writelog(0,'秒杀失败'); } } }
到此这篇关于thinkphp5+redis实现商品秒杀的文章就介绍到这了,更多相关thinkphp5+redis实现商品秒杀内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-09 00:51:19,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/f11b719d71485d687210fb705ddd9c9a.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Thinkphp5+Redis实现商品秒杀代码实例讲解.doc
本文 PDF 下载地址:Thinkphp5+Redis实现商品秒杀代码实例讲解.pdf
留言与评论(共有 0 条评论) |