本文整理汇总了Python中beaker.cache.CacheManager.region_invalidate方法的典型用法代码示例。如果您正苦于以下问题:Python CacheManager.region_invalidate方法的具体用法?Python CacheManager.region_invalidate怎么用?Python CacheManager.region_invalidate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类beaker.cache.CacheManager
的用法示例。
在下文中一共展示了CacheManager.region_invalidate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: CacheManager
# 需要导入模块: from beaker.cache import CacheManager [as 别名]
# 或者: from beaker.cache.CacheManager import region_invalidate [as 别名]
from beaker.cache import CacheManager
from beaker.util import parse_cache_config_options, func_namespace
from beakerfiddling.addone import addone
import os
here = os.path.dirname(os.path.abspath(__file__))
c = ConfigParser.ConfigParser(defaults={'here': here})
c.read(os.path.join(here, 'development.ini'))
cache_manager = CacheManager(**parse_cache_config_options(dict(c.items('app:main'))))
print(addone(0))
print(addone(0))
print(addone(9))
print(addone(9))
cache_manager.region_invalidate(addone, 'region1', 0)
print(addone(0))
print(addone(0))
print(addone(9))
print(addone(9))
# Now interrogate the cache -- see if it has values for 0 and 9 (it
# should, of course).
c = cache_manager.get_cache(func_namespace(addone.original_function))
for n in range(10):
print("{}: {}".format(n, "Present" if str(n) in c else "absent"))