Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 519 Bytes

File metadata and controls

26 lines (16 loc) · 519 Bytes

Cachify

Basic Usage

The following example demonstrates basic usage of the Cachify class.

--8<-- "examples/caching/basic.py"

Context Manager

The following example demonstrates usage of the Cachify class as a context manager.

--8<-- "examples/caching/context.py"

Object Caching

The following example demonstrates usage of the Cachify class to cache objects.

--8<-- "examples/caching/objects.py"