当前位置: 首页>>代码示例>>Python>>正文


Python CacheManager.region_invalidate方法代码示例

本文整理汇总了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"))
开发者ID:offby1,项目名称:beaker-fiddling,代码行数:32,代码来源:baby-steps.py


注:本文中的beaker.cache.CacheManager.region_invalidate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。