|
|
@ -132,6 +132,9 @@ class Cache(object): |
|
|
|
class CacheDescriptor(object): |
|
|
|
class CacheDescriptor(object): |
|
|
|
""" A method decorator that applies a memoizing cache around the function. |
|
|
|
""" A method decorator that applies a memoizing cache around the function. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This caches deferreds, rather than the results themselves. Deferreds that |
|
|
|
|
|
|
|
fail are removed from the cache. |
|
|
|
|
|
|
|
|
|
|
|
The function is presumed to take zero or more arguments, which are used in |
|
|
|
The function is presumed to take zero or more arguments, which are used in |
|
|
|
a tuple as the key for the cache. Hits are served directly from the cache; |
|
|
|
a tuple as the key for the cache. Hits are served directly from the cache; |
|
|
|
misses use the function body to generate the value. |
|
|
|
misses use the function body to generate the value. |
|
|
|