Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nickderobertis/obj-cache

Simple Python Object Cache
https://github.com/nickderobertis/obj-cache

Last synced: about 3 hours ago
JSON representation

Simple Python Object Cache

Awesome Lists containing this project

README

        

[![](https://codecov.io/gh/nickderobertis/obj-cache/branch/master/graph/badge.svg)](https://codecov.io/gh/nickderobertis/obj-cache)

# 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:

```python
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.](
https://nickderobertis.github.io/obj-cache/
)

## Author

Created by Nick DeRobertis. MIT License.