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

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

Updates to docs

File size: 340 bytes
RevLine 
[1737]1"""
[7876]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"""
[1737]9
[1743]10from caching import *
[1737]11
[1743]12
Note: See TracBrowser for help on using the repository browser.