秒杀高并发情况库存限制

思路:通过redis控制库存,先减1,如果库存小于0再加1。

代码:

    @Override
    public ServiceResult testA() {
        jedisClient.setString("TEST:AAA", "100");
        jedisClient.setString("TEST:BBB", "0");
        for (int i = 0; i < 1000; ++i) {
            asyncService.test();
        }
        Object o = null;
        return ServiceResult.success(o);
    }
@Async
    @Override
    public void test() {
        int i = 0;
        boolean minus = false;
        boolean ineedAdd = false;
        boolean add = false;
        try{
            Long l = jedisClient.decrement("TEST:AAA");
            minus = true;
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            LOGGER.info("has:{}", l);
            if (l<0){
                LOGGER.info("has no");
                ineedAdd = true;
                jedisClient.increment("TEST:AAA");
                add = true;
            }
        }catch (Exception e){
            LOGGER.error("error:{}", e.getMessage());
            //此处为异常处理,如redis链接数不够用,等待超时
            if (minus && ineedAdd && !add){
                boolean iTry = true;
                int num = 0;
                while (iTry && num < 10){
                    try {
                        jedisClient.increment("TEST:AAA");
                        iTry = false;
                    }catch (Exception e1){
                        LOGGER.error("try error:{}", e1.getMessage());
                        num ++;
                    }
                }

            }
        }

    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值