source: trunk/anuga_core/source/anuga/caching/__init__.py @ 8017

Last change on this file since 8017 was 7876, checked in by hudson, 14 years ago

Updates to docs

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
10from caching import *
11
12
Note: See TracBrowser for help on using the repository browser.