摘要:
1 配置文件 /etc/nginx/nginx.conf # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official 阅读全文
摘要:
# 如果fib函数执行次数过多时,通过装饰器来改进效率# 我们可以用字典来保存计算过的结果,防止重复def memoize(f): memo = {} def helper(x): if x not in memo: memo[x] = f(x) return memo[x] return help 阅读全文