本文整理汇总了Python中flask_cache.Cache方法的典型用法代码示例。如果您正苦于以下问题:Python flask_cache.Cache方法的具体用法?Python flask_cache.Cache怎么用?Python flask_cache.Cache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flask_cache
的用法示例。
在下文中一共展示了flask_cache.Cache方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: build_cache_from_config
# 需要导入模块: import flask_cache [as 别名]
# 或者: from flask_cache import Cache [as 别名]
def build_cache_from_config(app):
cfg = app.config
cache_type = cfg.get('CACHE_TYPE')
if cache_type is None:
return None
cache_config = {'CACHE_TYPE': cache_type}
if cache_type == 'redis':
cache_config.update({
'CACHE_KEY_PREFIX': cfg['CACHE_KEY_PREFIX'],
'CACHE_REDIS_HOST': cfg['CACHE_REDIS_HOST'],
'CACHE_REDIS_PORT': cfg['CACHE_REDIS_PORT'],
'CACHE_REDIS_URL': cfg['CACHE_REDIS_URL']
})
cache = Cache(config=cache_config)
return cache
示例2: cache
# 需要导入模块: import flask_cache [as 别名]
# 或者: from flask_cache import Cache [as 别名]
def cache(self):
# Remove annoying depcration warning from flask-cache
from flask.exthook import ExtDeprecationWarning
warnings.simplefilter('ignore', ExtDeprecationWarning)
if hasattr(self, '_cache'):
return self._cache
if CACHE_BACKEND_URI == 'memory://':
cache = Cache(app, config={'CACHE_TYPE': 'simple'})
elif CACHE_BACKEND_URI.startswith('redis://'):
try:
from redis import from_url as redis_from_url
redis_from_url(CACHE_BACKEND_URI)
except:
print('BAD REDIS URL PROVIDED BY (CACHE_BACKEND_URI)')
exit(1)
cache = Cache(app, config={
'CACHE_TYPE': 'redis',
'CACHE_REDIS_URL': CACHE_BACKEND_URI,
'CACHE_DEFAULT_TIMEOUT': 0 # NEVER EXPIRES
})
cache.init_app(self.app)
self._cache = cache
return self._cache
示例3: configure_cache
# 需要导入模块: import flask_cache [as 别名]
# 或者: from flask_cache import Cache [as 别名]
def configure_cache(app, config):
cache_config = {
'CACHE_TYPE': config.get('cache', 'type')
}
if cache_config['CACHE_TYPE'] == 'redis':
cache_config['CACHE_REDIS_HOST'] = config.get('redis', 'host')
cache_config['CACHE_REDIS_PORT'] = config.getint('redis', 'port')
cache = Cache(app, config=cache_config)
return cache
示例4: _config_caching
# 需要导入模块: import flask_cache [as 别名]
# 或者: from flask_cache import Cache [as 别名]
def _config_caching(self):
from flask_cache import Cache
self.cache = Cache(self)