Home > Database > Redis > body text

How to use php+redis to implement optimistic locking

WBOY
Release: 2023-06-03 10:09:45
forward
1423 people have browsed it

header(“content-type:text/html;charset=utf-8”);
$redis = new redis();
$result = $redis->connect('127.0.0.1 ', 6379);
$mywatchkey = $redis->get("");
$rob_total = 10;
//Snap-up quantity
if($mywatchkey<$rob_total) {
$redis->watch("mywatchkey");
$redis->multi();
//Set the delay to facilitate testing the effect.
sleep(5);
//Insert rush purchase data
$redis->hSet("mywatchlist","user_id_".mt_rand(1, 9999),time());
$ redis->set("mywatchkey",$mywatchkey 1);
$rob_result = $redis->exec();
if($rob_result) {
$mywatchlist = $redis-> hGetAll("mywatchlist");
echo "Purchase successful!";
echo "Remaining quantity:".($rob_total-$mywatchkey-1)."";
echo "User list:";
var_dump($mywatchlist);
} else {
echo “If you’re not lucky, buy again!”;
exit;
}
}

The above is the detailed content of How to use php+redis to implement optimistic locking. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template