关于“redis_连接_php”的问题,小编就整理了【1】个相关介绍“redis_连接_php”的解答:
php使用redis怎么解决秒杀中的超卖问题?使用redis 的队列+watch解决,把秒杀商品放入队列,抢到则pop商品,队列用完,则停止抢购
<?php
header("content-type:text/html;charset=utf-8");
$redis = new redis();
$result = $redis->connect('127.0.0.1', 6379);
$mywatchkey = $redis->get("mywatchkey");
$rob_total = 100; //抢购数量
if($mywatchkey<$rob_total){
$redis->watch("mywatchkey");
$redis->multi();
//设置延迟,方便测试效果。
sleep(5);
//插入抢购数据
$redis->hSet("mywatchlist","user_id_".mt_rand(1, 9999),time());
$redis->set("mywatchkey",$mywatchkey+1);
到此,以上就是小编对于“redis_连接_php”的问题就介绍到这了,希望介绍关于“redis_连接_php”的【1】点解答对大家有用。