|
__init__(self,
req,
config)
Initializes BlosxomCacheBase.__init__ and also opens the shelf
file. |
source code
|
|
|
|
|
|
boolean
|
isCached(self)
Returns true if the entry is cached and the cached version is not
stale. |
source code
|
|
|
|
|
|
list of strings
|
keys(self)
Returns a list of entries that are cached in the shelf. |
source code
|
|
|
|
|
__delitem__(self,
key)
Convenience function to make this look more like a dict. |
source code
|
|
|
__getitem__(self,
key)
Convenience function to make this class look like a dict. |
source code
|
|
|
|
|
get(self,
key,
default=None)
Convenience function to make this look more like a dict. |
source code
|
|
|
has_key(self,
key)
Convenience function to make this look more like a dict. |
source code
|
|