An object that persists in Redis. Works across instances and works seamlessly through magic functions.
Project description
🗄️ redis-memory
A production-ready Python class for seamless, multiprocessing-safe, persistent key-value storage using Redis as a backend. If Redis is unavailable, values are cached locally and queued for syncing when Redis comes back online. All values are serialized as JSON, and you interact with it using natural Python attribute access.
Purpose
The intention is to use this with agentic workflows deployed as microservices, allowing for multiple instances of the same pod to share their state.
✨ Features
- 🔄 Multiprocessing-safe: All processes share the same state via Redis.
- 🧠 Pythonic API: Set and get attributes as if they were regular object properties.
- 🕰️ Persistence: Values survive process restarts and context blocks.
- 🚦 Resilient: If Redis is down, changes are queued and flushed when it returns.
- 🧩 Customizable: Prefixes and conversation IDs for namespacing.
- 🧵 Background sync: Queued changes are flushed automatically in the background.
🚀 Quickstart
pip install redis-memory
from redis_memory import Memory
mem = Memory()
mem.answer = 42
print(mem.answer) # 42
# Across processes or instances:
mem2 = Memory()
print(mem2.answer) # 42
mem.settings = {"theme": "dark", "volume": 0.75}
print(mem.settings) # {'theme': 'dark', 'volume': 0.75}
🧑💻 Context Management
You can use Memory as a context manager for automatic resource handling:
with Memory() as memory:
memory.session = "active"
print(memory.session) # "active"
# Later, in a new context:
with Memory() as memory:
print(memory.session) # "active"
� Auto-Synced Collections
Lists and dictionaries are automatically wrapped as SyncedList and SyncedDict, which sync changes to Redis immediately:
mem = Memory()
mem.items = [1, 2, 3]
mem.items.append(4) # Automatically syncs to Redis
mem2 = Memory()
print(mem2.items) # [1, 2, 3, 4]
mem.config = {"theme": "dark"}
mem.config["lang"] = "en" # Automatically syncs to Redis
print(mem2.config) # {'theme': 'dark', 'lang': 'en'}
Nested structures work too:
mem.data = {"user": {"preferences": {"color": "blue"}}}
mem.data["user"]["preferences"]["color"] = "red" # Syncs!
Converting to Plain Python Types
For libraries that need plain Python objects (serialization, pickling, etc.):
mem.items = [1, 2, 3]
plain_list = mem.items.aslist() # Returns regular list
mem.config = {"key": "value"}
plain_dict = mem.config.asdict() # Returns regular dict
# Now you can pickle, deepcopy, or pass to external libraries
import pickle
pickle.dump(plain_list, file) # Works!
🗂️ Namespacing
By default, redis-memory uses memory: as its Redis prefix.
Set that with REDIS_PREFIX:
REDIS_PREFIX="my_service_state:"
from redis_memory import Memory
mem = Memory()
mem.state = {"step": 1}
print(mem.state) # {'step': 1}
Agents
Use the specific class ConversationMemory as an agent memory:
# TODO: Expand with a real conversation object and/or LiteLLM
from redis_memory import ConversationMemory
conversation_id = uuid()
mem = ConversationMemory(conversation_id=conversation_id)
mem.messages = messages # The messages payload to an LLM.
⚙️ Environment Variables
REDIS_HOST: Redis server hostname (default:redis)REDIS_PORT: Redis server port (default:6379)REDIS_PREFIX: Key prefix (default:memory:)
🛠️ Development
🐳 Docker/Devcontainer
- Clone the repo.
- You can use VS Code Dev Containers for an instant dev environment.
- Or, just run tests in Docker—no setup needed!
🧪 Running Tests
With a Development Container: Open in VS Code, and start the development container. You do not need to install anything other than VS Code and docker. (Shift/Cmd + P and check under ``Dev Containers'')
Run the two VS code tasks, test and reformat, before making a PR. These are the same as the tests that will run on the CI/CD pipeline.
Without Anything: Just write the code, and add your unit tests. (Test-Driven Development) Run the following command:
docker-compose up --build --remove-orphans --force-recreate --abort-on-container-exit --exit-code-from test
The only requirement is docker.
Virtual Env: I did not add support for the Python venv. However, all of
the requirements are captured in pyproject.toml. You should be able to use the
following commands to set up a venv with all of the requirements.
python -m venv .venv
source .venv/bin/activate # macOS/Linux
.venv\Scripts\activate # Windows
pip install --upgrade pip
pip install .
pip install .[test]
pip install .[dev]
🤝 Contributing
- PRs are welcome! No special permissions required.
- All you need is Docker (or a devcontainer).
- Please ensure all tests pass before submitting your PR.
📚 License
MIT
Made with ❤️ and Redis.
Project details
Release history Release notifications | RSS feed
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 redis_memory-0.4.2.tar.gz.
File metadata
- Download URL: redis_memory-0.4.2.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3000aaed15aa61a11279cb49a9dddaedad5ca6e770a9cf5c3a8a66497700adf2
|
|
| MD5 |
47546049953a64b13088ea6cc6c6a735
|
|
| BLAKE2b-256 |
d301d90f70517ed378ca136b4c8d906363a4901609d4b1123e7d9df76e02cefc
|
Provenance
The following attestation bundles were made for redis_memory-0.4.2.tar.gz:
Publisher:
ci.yaml on sinan-ozel/redis-memory
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
redis_memory-0.4.2.tar.gz -
Subject digest:
3000aaed15aa61a11279cb49a9dddaedad5ca6e770a9cf5c3a8a66497700adf2 - Sigstore transparency entry: 1394982929
- Sigstore integration time:
-
Permalink:
sinan-ozel/redis-memory@04324766d10fea08d24a4876189de248f9d3cbad -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sinan-ozel
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@04324766d10fea08d24a4876189de248f9d3cbad -
Trigger Event:
push
-
Statement type:
File details
Details for the file redis_memory-0.4.2-py3-none-any.whl.
File metadata
- Download URL: redis_memory-0.4.2-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f65fb11419ec9f590b3bab56cb5eff4dda099ba92994934b8c8450519ce43fa
|
|
| MD5 |
bcb13be79ee29f1bffbcda38eff683e7
|
|
| BLAKE2b-256 |
d1c8824ef4e3fbe8104169315885438b192af7e6acabf95ccdbf5e5eec7deefb
|
Provenance
The following attestation bundles were made for redis_memory-0.4.2-py3-none-any.whl:
Publisher:
ci.yaml on sinan-ozel/redis-memory
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
redis_memory-0.4.2-py3-none-any.whl -
Subject digest:
3f65fb11419ec9f590b3bab56cb5eff4dda099ba92994934b8c8450519ce43fa - Sigstore transparency entry: 1394982940
- Sigstore integration time:
-
Permalink:
sinan-ozel/redis-memory@04324766d10fea08d24a4876189de248f9d3cbad -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sinan-ozel
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@04324766d10fea08d24a4876189de248f9d3cbad -
Trigger Event:
push
-
Statement type: