cachetools
Package — CachingPython 3.7+Intermediate
Extensible memoizing collections: TTL, LRU, LFU cache
Quick Info
- Documentation
- Official Docs
- Python Version
- 3.7+
- Dependencies
- None (pure Python)
- Install
pip install cachetools
Learn by Difficulty
Quick Example
python
# Install: pip install cachetools import cachetools # Basic cachetools usage print(f"Using cachetools") # See documentation for detailed examples
cachetools is a third-party package. Extensible memoizing collections: TTL, LRU, LFU cache. Install with: pip install cachetools
Try in PlaygroundTags
packagecachingperformancestorage