source:
trunk/anuga_core/source/anuga/caching/__init__.py
@
7876
Last change on this file since 7876 was 7876, checked in by hudson, 13 years ago | |
---|---|
File size: 340 bytes |
Line | |
---|---|
1 | """ |
2 | Generic caching module. |
3 | |
4 | Allows for the disk caching of the results of any function. If a function |
5 | is cached, its return values will be stored on the local hard drive. |
6 | If the function is called with identical parameters in the future, the |
7 | cached result will be returned. |
8 | """ |
9 | |
10 | from caching import * |
11 | |
12 |
Note: See TracBrowser
for help on using the repository browser.