原理概述:
程序会确定一个时间片,这个时间片越小,控制精度越高。一个访问控制涉及到多个时间片。
程序在某个时间要求加入一次访问记录,会先针对当前时间计算要用到的时间片,并对这个时间片的counter加1。
程序在判断一段时间访问了多少次时,会先计算这段时间包含多少个时间片,然后取出所有这些时间片将counter相加后返回。
原理介绍看这里,程序相关源码在这里(nodejs)
怎样用Redis构建访问频率控制模块
使用示例(nodejs):
varredback=require('redback').createClient(),
ratelimit=redback.createRateLimit('requests');
//IncrementthecountforthespecifiedIP
ratelimit.add('127.0.0.1');
//Countthenumberofrequestsinthelast20seconds
ratelimit.count('127.0.0.1',20,function(err,requests){
if(requests>30){
//Throttletheuserinsomeway..
}
});
以上是如何用Redis构建访问频率控制模块的详细内容。更多信息请关注PHP中文网其他相关文章!