A simple, lightweight caching library for disk-based or object-based caching
Project description
light-cache
A Python package for using disk-based or object-bashed caching, perfect for simple scripts or Jupyter Notebooks.
Features
✨ Flexible Storage Options
- Multiple cache storage modes (Memory, Disk, or Hybrid)
- Support for multiple independent cache stores
- Configurable cache directory location
⚡ Performance
- In-memory caching for fast access
- Disk persistence for data durability
- Hybrid mode for optimal performance and reliability
⚙️ Advanced Cache Control
- Automatic cache expiration
- Manual cache item removal
- Configurable default values for cache misses
- Non-expiring cache items support
🛠️ Developer Friendly
- Simple, intuitive API
- Perfect for scripts and Jupyter notebooks
- No external dependencies
- Lightweight alternative to Redis for simple use cases
Install
Use pip to install:
pip install light-cache
Usage
To get started, you need to set up a cache store:
from light_cache import CacheStore
cache = CacheStore(persist_cache=True, keep_cache_in_memory=True)
There are three main modes for this cache:
- Disk cache: Setting
persist_cacheto True andkeep_cache_in_memoryto False, the cache will read and write to a local cache file on each get/put operation. If you have many instances of a script running and need to keep the cache in sync, this is likely the right option. - Memory cache: Setting
persist_cacheto False andkeep_cache_in_memoryto True, keeps the cache in memory during the execution of the script or while the notebook is running. The cache will not persist between sessions. If you do not need the cache to exist after the session ends and have many computationally intensive functions during the execution, this is likely the right option. - Hybrid (default and recommended): Setting both to True will allow the cache to stay in memory during execution but save changes to a file to persist between sessions. For most use-cases of working in a notebook or creating small scripts that do not require full Redis or similar cache, this is likely the right option.
Using multiple stores
You can set up different cache stores for different information. For example, if you need one store for just movies and another for podcasts, you could:
from light_cache import CacheStore
movie_cache = CacheStore(store='movies')
podcast_cache = CacheStore(store='podcasts')
Setting and retrieving values
The main methods are get(), put(), has(), and forget().
from light_cache import CacheStore
cache = CacheStore()
cache.put('some-key', 'some-value')
my_value = cache.get('some-key')
# `get()` returns None if cache doesn't exist. This can be changed using the `default` parameter
my_value = cache.get('some-nonexistent-key', default=0)
if cache.has('some-key'):
# do something
# `pull()` will retrieve a cached item and delete it from the cache if it exists
my_value = cache.pull('some-key')
# Expiration is in seconds (defaults to 5 minutes)
cache.put('new-key', 'new-value', expires=1200)
# Set to None for items that should not expire
cache.put('never-expire-key', 'never-expire-value', expires=None)
# Items that do not expire will remain in cache until the item is removed using `forget()`
cache.forget('never-expire-key')
Change location of the cache directory
When using disk-based cache, the files are stored in .cache/ but this can be changed:
from light_cache import CacheStore
cache = CacheStore(cache_directory='src/app/cache')
Contributing
Community made feature requests, patches, bug reports, and contributions are always welcome.
Please review our contributing guidelines if you decide to make a contribution.
Setting up development environment
This project uses Poetry for managing dependencies and environments.
Tests
This project uses pytest for its tests.
To run tests locally, use:
poetry run pytest
Formatter
This project uses black for formatting. To run the formatter, use:
poetry run black .
License
This project is licensed under the MIT License. See LICENSE for more details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file light_cache-0.2.0.tar.gz.
File metadata
- Download URL: light_cache-0.2.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.10.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
071cf3364cfb5d624867d6049cb655cc29c2a2c5a9ce0186b0ad8a317717e5ef
|
|
| MD5 |
609fa54e20ea062c45482f5935abff29
|
|
| BLAKE2b-256 |
c6d5f50c74ae55715dd6f5f9003d09643b914712e9dd79a9301f3346ae33cdb9
|
File details
Details for the file light_cache-0.2.0-py3-none-any.whl.
File metadata
- Download URL: light_cache-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.10.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efb85b3f3e154c02f3199c875dbd3f923d10acae94354192d92c471b57ee05a2
|
|
| MD5 |
20ab4af5a88e05862643adcc96c114f4
|
|
| BLAKE2b-256 |
1fc142585e36305fab262f400444ba8db25b9423803e4a10eb46e4d02da63eb1
|