[GO]go redis实现滑动窗口限流-redis版

前端之家收集整理的这篇文章主要介绍了[GO]go redis实现滑动窗口限流-redis版前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

上一篇是单机当前进程的滑动窗口限流,这一个是使用go redis list结构实现的滑动窗口限流,原理都一样,但是支持分布式

原理可以参考上一篇介绍

func LimitFreqs(queueName string,count uint,1)"> timeWindow int64) bool {
    currTime := time.Now().Unix()
    length := uint(ListLen(queueName))
    if length < count {
        ListPush(queueName,1)"> currTime)
        return true
    }
    //队列满了,取出最早访问的时间
    earlyTime,_ := strconv.ParseInt(ListIndex(queueName,int64(length)-1),10,64)
    说明最早期的时间还在时间窗口内,还没过期,所以不允许通过
    if currTime-earlyTime <= timeWindow {
        false
    } else {
        说明最早期的访问应该过期了,去掉最早期的
        ListPop(queueName)
        ListPush(queueName,1)"> currTime)
    }
    
}

 

猜你在找的Go相关文章