|
|
|||
File indexing completed on 2026-04-20 07:58:57
0001 """ 0002 Cache class 0003 0004 """ 0005 0006 from .spec_base import SpecBase 0007 0008 0009 class CacheSpec(SpecBase): 0010 # attributes 0011 attributesWithTypes = ("mainKey:text primary key", "subKey:text", "data:blob", "lastUpdate:timestamp") 0012 0013 # constructor 0014 def __init__(self): 0015 SpecBase.__init__(self)
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|