码迷,mamicode.com
首页 > 其他好文 > 详细

基于中间件访问频率限制 每分钟时间间隔最多访问3次

时间:2019-03-31 19:34:46      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:and   add   visit   通过   ons   while   中间   一个   time   

同一个IP 1分钟时间间隔只能访问三次

1. 拿到用户请求的IP
2. 当前请求的时间
3. 记录访问的历史
VISIT_RECORD ={
    ip:[]
}
class Throttle(MiddlewareMixin):
    def process_request(self,request):
        # print(request.META)通过这个可以拿到ip
        ip = request.META.get(REMOTE_ADDR)
        now = time.time()
        if ip not in VISIT_RECORD:
            VISIT_RECORD[ip] = []
        history = VISIT_RECORD[ip]
        while history and now - history[-1] >60:
            history.pop()
        if len(history) >= 3:
            return HttpResponse(您的访问次数超出限制!请在一分钟之后再次访问!!!)
        history.insert(0,now)

 

基于中间件访问频率限制 每分钟时间间隔最多访问3次

标签:and   add   visit   通过   ons   while   中间   一个   time   

原文地址:https://www.cnblogs.com/hnlmy/p/10632521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!