我是靠谱客的博主 自觉心锁,最近开发中收集的这篇文章主要介绍利用redis做限流器,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.inspur.inspurTest.test.redis;

import redis.clients.jedis.Jedis;

/**
 * author yulinshan
 * time 2019/5/23
 * 限流器,利用redis的incr函数做计数,expire做计时失效
 **/
public class Increase {
    static String key = "count";
    static int limitCount = 30;
    public static void main(String[] args) throws InterruptedException {
        Jedis j =new Jedis("127.0.0.1",6379);
        for(int i = 0 ;i < 100 ;i ++ ) {
            if (!checkKey(j)){
                System.out.println("超过限流阈值");
                return;
            }
            incrKey(j);
        }
    }
    private static void incrKey(Jedis j){
        if (j.ttl(key) < 0 ){
            j.incr(key);
            j.expire(key,60);
        }else{
            j.incr(key);
        }
        System.out.println("总计访问次数为:"+j.get(key));
    }

    private static boolean checkKey(Jedis j) {
        if (null != j.get(key)) {
            if (Integer.parseInt(j.get(key)) >= limitCount) {
                return false;
            }
        }
        return true;
    }
}

以上的代码借鉴了《架构修炼之道》第90页代码。以上逻辑可以放在网关项目中,对某些请求做限流。用到了包

compile group: 'redis.clients', name: 'jedis', version: '2.9.0'

最后

以上就是自觉心锁为你收集整理的利用redis做限流器的全部内容,希望文章能够帮你解决利用redis做限流器所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部