<?php
header("content-type:text/html;charset=utf-8");
$redis = new redis();
$result = $redis->connect('10.10.10.119', 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);
$rob_result = $redis->exec();
if($rob_result){
$mywatchlist = $redis->hGetAll("mywatchlist");
echo "抢购成功!<br/>";
echo "剩余数量:".($rob_total-$mywatchkey-1)."<br/>";
echo "用户列表:<pre>";
var_dump($mywatchlist);
}else{
echo "手气不好,再抢购!";exit;
}
}
private StringRedisTemplate stringRedisTemplate;
public static ThreadLocal<String> holder = new ThreadLocal<>();
public Boolean setConcurrentLock(String key, long expireTime) throws InterruptedException {
ValueOperations<String, String> ops = stringRedisTemplate.opsForValue();
while (!ops.setIfAbsent(key, String.valueOf(System.currentTimeMillis() + expireTime))) {
stringRedisTemplate.watch(key);
Long expire = Long.parseLong(ops.get(key));
if (expire != null && expire < System.currentTimeMillis()) {
stringRedisTemplate.multi();
Long oldExpire = Long.parseLong(ops.getAndSet(key, String.valueOf(System.currentTimeMillis() + expireTime)));
if (stringRedisTemplate.exec() != null && oldExpire != null && oldExpire < System.currentTimeMillis()) {
break;
}
} else {
stringRedisTemplate.unwatch();
}
TimeUnit.MILLISECONDS.sleep(3);
}
holder.set(ops.get(key));
return true;
}
public void deleteConcurrentLock(String key) {
ValueOperations<String, String> ops = stringRedisTemplate.opsForValue();
Long expire = Long.valueOf(ops.get(key));
if(exprie.equals(holder.get())){
stringRedisTemplate.delete(key);
}
holder.remove();
}
```http://blog.csdn.net/u012116196/article/details/51782934
redis同步代码
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1、概念 普通代码块:在方法或语句中出现的{}就称为普通代码块。普通代码块和一般的语句执行顺序由他们在代码中出现的...
- 关键组件:ContentResolverContentServiceSyncManagerSyncManager....