redisson相比原生的jredis具有排队的功能,不一致秒杀时,一时获取锁失败就返回失败 。
秒杀的原理就是使用redis的分布式锁的功能,保证每次抢购不会出现超卖的情况
1 引入pom<dependency><groupId>org.redisson</groupId><artifactId>redisson</artifactId><version>3.16.8</version></dependency>
2 完整代码及解析如下package htmdemo;import com.ruoyi.common.core.redis.RedisCache;import org.redisson.api.RLock;import org.redisson.api.RedissonClient;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import JAVA.util.ArrayList;import java.util.concurrent.*;/** * 使用redisson来实现分布式的秒杀功能 * @author Administrator * */@Componentpublic class ReddisonTest { @Autowiredprivate RedisCache redisCache;@AutowiredRedissonClient redissonClient;/*** 秒杀* @throws ExecutionException* @throws InterruptedException*/public void secondkill() throws ExecutionException, InterruptedException {//加锁的实现方式ExecutorService exec = Executors.newFixedThreadPool(50);ArrayList<Future<Integer>> futures = new ArrayList<>();RLock stockLock = redissonClient.getLock("stockLock");for (int i = 0; i < 50; i++) {Future<Integer> fsubmit = exec.submit(() -> {int doneCount = 0;//初始化做的任务为0if(numLock.tryLock(1,1,TimeUnit.SECONDS)){//获取到锁,则做业务/*** trylock(param1,param2,param3):尝试获取锁* @param1:等待时间(在这个时间内不停获取锁)* @param2:获取成功后锁的有效时间* @param3:时间单位(秒/分/...)*/int stock = redisCache.getCacheObject("stock");stock--;redisCache.setCacheObject("stock", stock);doneCount++;//isHeldByCurrentThread()的作用是查询当前线程是否保持此锁定if(numLock.isHeldByCurrentThread()){numLock.unlock();}}return doneCount;});futures.add(fsubmit);}Integer saleToal = 0;for (int i = 0; i < futures.size(); i++) {Future<Integer> count = futures.get(i);saleToal = saleToal + count.get();}System.out.println("最终的卖出:"+saleToal);}}
以上的核心代码为
//得到锁对象RLock stockLock = redissonClient.getLock("stockLock");//尝试获取锁if(numLock.tryLock(1,1,TimeUnit.SECONDS))
【使用redisson实现分布式秒杀功能】
推荐阅读
- 在 node 中使用 jquery ajax
- 使用SpringBatch读取csv文件
- 使用 JavaScript 实现无限滚动
- 实现共同富裕,在农村就必须坚持?共同富裕的社会理想能否实现
- |想要实现时间自由吗?那就先让自己成为一架“全天候战斗机”吧
- 蒸鱼豉油可以炒菜吗
- 怎样制作红油辣椒
- |专家建议:大城市30岁还未实现经济独立的女性,趁早回老家!
- 如何使用健身器材
- 分享微信使用技巧,快来涨姿势啦