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


Python CacheControl.delete方法代码示例

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


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

示例1: test_max_bytes

# 需要导入模块: from cachecontrol import CacheControl [as 别名]
# 或者: from cachecontrol.CacheControl import delete [as 别名]
    def test_max_bytes(self, tmpdir, sess):
        """
        Test that caches the first url but not the second because
        the maximum bytes have been reached for the cache.
        """
        # use a cache with max_bytes set
        max_bytes = 1400
        self.cache = FileCache(str(tmpdir), max_bytes=max_bytes)
        sess = CacheControl(requests.Session(), cache=self.cache)

        url1 = self.url + ''.join(sample(string.ascii_lowercase, randint(2, 4)))
        url2 = self.url + ''.join(sample(string.ascii_lowercase, randint(2, 4)))
        assert url1 != url2

        # fill up the cache with url1
        response = sess.get(url1)
        assert not response.from_cache

        # make sure it got into the cache
        response = sess.get(url1)
        assert response.from_cache

        # do url2 now
        response = sess.get(url2)
        assert not response.from_cache

        # make sure url2 was NOT cached
        response = sess.get(url2)
        assert not response.from_cache

        # clear the cache
        response = sess.delete(url1)
        assert not response.from_cache

        # re-add to cache since bytes should be back to 0
        response = sess.get(url1)
        assert not response.from_cache

        # verify from cache again
        response = sess.get(url1)
        assert response.from_cache
开发者ID:hongquantq92,项目名称:cachecontrol,代码行数:43,代码来源:test_storage_filecache.py


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