Kivy 简明教程
Kivy - Cache Manager
在 Kivy 框架中,Cache 类通过将一个或多个 Python 对象赋值为唯一键的值来存储它们。Kivy 的缓存管理器通过限制包含的对象数或让他们的访问保持超时限制来控制其中的对象。
Cache 类在“kivy.cache”模块中定义。它包括静态方法:register()、append()、get() 等。
首先,你需要通过设置对象的最大数量和超时来在缓存管理器中注册一个类别。
from kivy.cache import Cache
Cache.register(category='mycache', limit=10, timeout=5)
你现在可以最多添加 10 个 Python 对象,每个对象都有一个唯一键。
key = 'objectid'
instance = Label(text=text)
Cache.append('mycache', key, instance)
get() 方法从缓存中检索一个对象。
instance = Cache.get('mycache', key)
Cache 类定义了以下内容:
register() Method
此方法使用指定限制在缓存中注册一个新类别。它包含以下参数:
-
- 字符串类别标识符。
-
- 缓存中允许的最大对象数。如果为 None,则不应用限制。
-
- 从缓存中删除对象之后的时间。
append() Method
此方法将一个新对象添加到缓存中。定义了以下参数:
-
category - 类别的字符串标识符。
-
key - 要存储的对象的唯一标识符。
-
obj - 要存储在缓存中的对象。
-
timeout - 如果对象未被使用,删除对象的时间。如果使用 None 作为键,将引发 ValueError。
get() Method
此方法用于从缓存获取对象,参数如下:
-
category - 类别的字符串标识符。
-
key - 存储中对象的唯一标识符。
-
default - 如果未找到键,要返回的默认值。
Example
请看以下示例:
from kivy.cache import Cache
from kivy.uix.button import Button
from kivy.uix.label import Label
Cache.register(category='CacheTest', limit=5, timeout=15)
b1 = Button(text='Button Cache Test')
Cache.append(category='CacheTest', key='Button', obj=b1)
l1 = Label(text='Label Cache Test')
Cache.append(category='CacheTest', key='Label', obj=l1)
ret = (Cache.get('CacheTest', 'Label').text)
print (ret)