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


Python util.LRUCache方法代码示例

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


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

示例1: testlru

# 需要导入模块: from mako import util [as 别名]
# 或者: from mako.util import LRUCache [as 别名]
def testlru(self):
        l = LRUCache(10, threshold=0.2)

        for id_ in range(1, 20):
            l[id_] = item(id_)

        # first couple of items should be gone
        assert 1 not in l
        assert 2 not in l

        # next batch over the threshold of 10 should be present
        for id_ in range(11, 20):
            assert id_ in l

        l[12]
        l[15]
        l[23] = item(23)
        l[24] = item(24)
        l[25] = item(25)
        l[26] = item(26)
        l[27] = item(27)

        assert 11 not in l
        assert 13 not in l

        for id_ in (25, 24, 23, 14, 12, 19, 18, 17, 16, 15):
            assert id_ in l 
开发者ID:sqlalchemy,项目名称:mako,代码行数:29,代码来源:test_lru.py

示例2: testlru

# 需要导入模块: from mako import util [as 别名]
# 或者: from mako.util import LRUCache [as 别名]
def testlru(self):
        l = LRUCache(10, threshold=.2)

        for id in range(1,20):
            l[id] = item(id)

        # first couple of items should be gone
        assert 1 not in l
        assert 2 not in l

        # next batch over the threshold of 10 should be present
        for id in range(11,20):
            assert id in l

        l[12]
        l[15]
        l[23] = item(23)
        l[24] = item(24)
        l[25] = item(25)
        l[26] = item(26)
        l[27] = item(27)

        assert 11 not in l
        assert 13 not in l

        for id in (25, 24, 23, 14, 12, 19, 18, 17, 16, 15):
            assert id in l 
开发者ID:jhpyle,项目名称:docassemble,代码行数:29,代码来源:test_lru.py


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