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


Python base.BaseCache方法代码示例

本文整理汇总了Python中django.core.cache.backends.base.BaseCache方法的典型用法代码示例。如果您正苦于以下问题:Python base.BaseCache方法的具体用法?Python base.BaseCache怎么用?Python base.BaseCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.core.cache.backends.base的用法示例。


在下文中一共展示了base.BaseCache方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_cache_key_memcache_validation

# 需要导入模块: from django.core.cache.backends import base [as 别名]
# 或者: from django.core.cache.backends.base import BaseCache [as 别名]
def test_cache_key_memcache_validation(self):
        """
        Handle cache key creation correctly, see #17861.
        """
        name = (
            "/some crazy/long filename/ with spaces Here and ?#%#$/other/stuff"
            "/some crazy/long filename/ with spaces Here and ?#%#$/other/stuff"
            "/some crazy/long filename/ with spaces Here and ?#%#$/other/stuff"
            "/some crazy/long filename/ with spaces Here and ?#%#$/other/stuff"
            "/some crazy/long filename/ with spaces Here and ?#%#$/other/stuff"
            "/some crazy/\x16\xb4"
        )
        cache_key = storage.staticfiles_storage.hash_key(name)
        cache_validator = BaseCache({})
        cache_validator.validate_key(cache_key)
        self.assertEqual(cache_key, 'staticfiles:821ea71ef36f95b3922a77f7364670e7') 
开发者ID:nesdis,项目名称:djongo,代码行数:18,代码来源:test_storage.py

示例2: get_cache_backend

# 需要导入模块: from django.core.cache.backends import base [as 别名]
# 或者: from django.core.cache.backends.base import BaseCache [as 别名]
def get_cache_backend(cache_name: Optional[str]) -> BaseCache:
    if cache_name is None:
        return djcache
    return caches[cache_name] 
开发者ID:zulip,项目名称:zulip,代码行数:6,代码来源:cache.py


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