| Method Summary | 
|  | getEntry(self)Get data from pickle
 | 
|  | isCached(self)Check if file is updated
 | 
|  | keys(self)List out a list of keys for the cache, to be overridden by a subclass 
if a full dict interface is required.
 | 
|  | load(self,
          entryid)Try to load up the cache with entryid (a unique key for the entry)
 | 
|  | rmEntry(self)Remove cache entry: This is not used by pyblosxom, but used by 
utilities
 | 
|  | saveEntry(self,
          entrydata)Save data in the pickled file
 | 
|  | __makepath(self,
          path) | 
  | Inherited from BlosxomCacheBase | 
|  | __init__(self,
          req,
          config)Constructor - setup and load up the cache
 | 
|  | __delitem__(self,
          key) | 
|  | __getitem__(self,
          key)Convenience function to make this class look like a dict
 | 
|  | __setitem__(self,
          key,
          value)Synonymous to
 saveEntry | 
|  | close(self)Close your cache if necessary.
 | 
|  | get(self,
          key,
          default) | 
|  | has_key(self,
          key) |