-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmemoize.py
50 lines (40 loc) · 1.63 KB
/
memoize.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
这里构造了一个缓存函数的装饰器,可以缓存一个函数的调用结果,可以指定过期时间
参考资料:http://book.pythontips.com/en/testing/function_caching.html
memozie 最好传递一个unique_name参数,指定缓存函数的名称,否则不同的函数的缓存结果容易混在一起。
"""
import functools
import time
import os
memo = {}
def memoize(function=None, unique_name="unique", timeout=0):
if not function:
return functools.partial(memoize, unique_name=unique_name, timeout=timeout)
@functools.wraps(function)
def wrapper(*args, **kwargs):
wargs = str(args) + str(kwargs)
if unique_name not in memo:
memo[unique_name] = dict()
if wargs in memo[unique_name]:
if timeout == 0: #timeout=0 永不过期
return memo[unique_name][wargs]["result"]
else:
if time.time() - memo[unique_name][wargs]["time"] < timeout: #未过期
return memo[unique_name][wargs]["result"]
rv = function(*args, **kwargs)
memo[unique_name][wargs] = {"time":time.time(), #缓存的时间戳
"result": rv} #缓存的结果
return rv
return wrapper
def remove_memoize(unique_name):
"""清除缓存"""
if unique_name in memo:
del memo[unique_name]
@memoize(unique_name="unique", timeout=100)
def set_a(num):
return ''.join(map(lambda xx:(hex(ord(xx))[2:]),os.urandom(10000)))
def test():
for i in xrange(500):
set_a(i)