A HuntCache object represents a particular "hunt cache" a
file that stores hunt results for re-use.
|
|
__init__(self,
debug=False)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
|
|
|
| initialize_cached_data(self) |
|
|
|
|
|
|
|
reset(self)
Delete the exsiting cache file (if any) |
|
|
|
|
get(self,
cache_key,
schrod_execs)
Returns the cached results (if any) for a particular 'hunt' request,
described by the parameters in the given cache key. |
|
|
|
|
_initialize_cache(self)
Creates a new cache file. |
|
|
|
|
save(self,
cache_key,
hunted_execs)
Adds the given search result (hunted_execs) to the cache. |
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|