侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

python装饰器-限制函数调用次数的方法(10s调用一次)

Python  /  管理员 发布于 7年前   137

这是博主最近一家大公司的面试题,写一个装饰器,限制函数每10s调用一次。当时是笔试的,只写了大概的代码,回来后温习了python装饰器的基础知识,把代码写完了。决定写篇博客记录下。

装饰器分为带参数得装饰器以及不带参数得装饰器。

#不带参数的装饰器@dec1@dec2def func():  ...#这个函数声明等价于func = dec1(dec2(func))#带参数的装饰器@dec(some_args)def func():  ...#这个函数声明等价于func = dec(some_args)(func)

不带参数的装饰器需要注意的一些细节

1. 关于装饰器函数(decorator)本身

因此一个装饰器一般对应两个函数,一个是decorator函数,用来进行一些初始化操作处理,一个是decorated_func用来实现对被装饰的函数func的额外处理。并且为了保持对func的引用,decorated_func一般作为decorator的内部函数

def decorator(func):  def decorator_func()    func()  return decorated_func

decorator函数只在函数声明的时候被调用一次

装饰器实际上是语法糖,在声明函数之后就会被调用,产生decorated_func,并把func符号的引用替换为decorated_func。之后每次调用func函数,实际调用的是decorated_func(这个很重要,装饰之后,其实每次调用的是decorated_func)。

>>> def decorator(func):...   def decorated_func():...     func(1)...   return decorated_func... #声明时就被调用>>> @decorator... def func(x):...   print x... decorator being called #使用func()函数实际上使用的是decorated_func函数>>> func()1>>> func.__name__'decorated_func'

如果要保证返回的decorated_func的函数名与func的函数名相同,应当在decorator函数返回decorated_func之前,加入decorated_func.name = func.name, 另外functools模块提供了wraps装饰器,可以完成这一动作。

#@wraps(func)的操作相当于#在return decorated_func之前,执行#decorated_func.__name__ = func.__name__#func作为装饰器参数传入, #decorated_func则作为wraps返回的函数的参数传入>>> def decorator(func):...   @wraps(func)...   def decorated_func():...     func(1)...   return decorated_func... #声明时就被调用>>> @decorator... def func(x):...   print x... decorator being called #使用func()函数实际上使用的是decorated_func函数>>> func()1>>> func.__name__'func'

decorator函数局部变量的妙用

因为closure的特性(详见(1)部分闭包部分的详解),decorator声明的变量会被decorated_func.func_closure引用,所以调用了decorator方法结束之后,decorator方法的局部变量也不会被回收,因此可以用decorator方法的局部变量作为计数器,缓存等等。

值得注意的是,如果要改变变量的值,该变量一定要是可变对象,因此就算是计数器,也应当用列表来实现。并且声明一次函数调用一次decorator函数,所以不同函数的计数器之间互不冲突,例如:

#!/usr/bin/env python#filename decorator.pydef decorator(func):  #注意这里使用可变对象  a = [0]  def decorated_func(*args,**keyargs):    func(*args, **keyargs)    #因为闭包是浅拷贝,如果是不可变对象,每次调用完成后符号都会被清空,导致错误    a[0] += 1    print "%s have bing called %d times" % (func.__name__, a[0])  return decorated_func@decoratordef func(x):  print x@decoratordef theOtherFunc(x):  print x

下面我们开始写代码:

#coding=UTF-8#!/usr/bin/env python#filename decorator.pyimport timefrom functools import wrapsdef decorator(func):  "cache for function result, which is immutable with fixed arguments"  print "initial cache for %s" % func.__name__  cache = {}  @wraps(func)  def decorated_func(*args,**kwargs):    # 函数的名称作为key    key = func.__name__    result = None    #判断是否存在缓存    if key in cache.keys():      (result, updateTime) = cache[key]      #过期时间固定为10秒      if time.time() -updateTime < 10:        print "limit call 10s", key        result = updateTime      else :        print "cache expired !!! can call "        result = None    else:      print "no cache for ", key    #如果过期,或则没有缓存调用方法    if result is None:      result = func(*args, **kwargs)      cache[key] = (result, time.time())    return result  return decorated_func@decoratordef func(x):  print 'call func'

随便测试了下,基本没有问题。

>>> from decorator import funcinitial cache for func>>> func(1)no cache for funccall func>>> func(1)limit call 10s func1488082913.239092>>> func(1)cache expired !!! can callcall func>>> func(1)limit call 10s func1488082923.298204>>> func(1)cache expired !!! can callcall func>>> func(1)limit call 10s func1488082935.165979>>> func(1)limit call 10s func1488082935.165979

以上这篇python装饰器-限制函数调用次数的方法(10s调用一次)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。


  • 上一条:
    python 限制函数调用次数的实例讲解
    下一条:
    对Python中的@classmethod用法详解
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客