Simple Redis-like interface to storing arbirary Python objects. A high-level wrapper around ZoDB.
Project description
obj-cache
Overview
Simple Redis-like interface to storing arbitrary Python objects. A high-level wrapper around ZoDB.
Getting Started
Install objcache
:
pip install objcache
A simple example:
from objcache import ObjectCache
cache = ObjectCache('cache.zodb', ('a', 'b'))
cache.store(5)
# Later session
cache = ObjectCache('cache.zodb', ('a', 'b'))
result = cache.get()
print(result)
5
Links
See the documentation here.
Author
Created by Nick DeRobertis. MIT License.
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
objcache-0.1.1.tar.gz
(5.8 kB
view hashes)