Object-hash mapping library for Redis
Project description
Oredis is a library for storing objects in Redis, a persistent key-value database. It includes an extensible list of validations and has very good performance.
How to use
from oredis.models import Model from oredis.manager import Manager from oredis.fields import String, PrimaryKey, StringPK, Integer, DateTime
- class NoteManager(Manager):
pass
- class NoteModel(Model):
id = PrimaryKey() title = String() pk_hash = StringPK() body = String(required = True)
objects = NoteManager(connection = redis.Redis())
- In [19]: note1 = NoteModel(title = “Hello world!”,
….: body=”I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I’ve noticed that some of our sessions have gotten bogged down in minor details, and I don’t feel I’ve been very organized. (But the answers to this post have helped a lot.)”)
In [20]: note1 Out[20]: <NoteModel: 942>
In [21]: note1.title Out[21]: ‘Hello world!’
In [22]: note1.title
INSTALLATION
To use oredis use pip or easy_install:
pip install oredis
or
easy_install oredis
CONTRIBUTE
Fork https://github.com/lispython/oredis/ , create commit and pull request.
Credits
Thanks Alexander Solovyov for some concepts are taken from orem library.
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
File details
Details for the file oredis-0.1.tar.gz
.
File metadata
- Download URL: oredis-0.1.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f9f770ee5063de80be597db679017ac8a966a80999e9f6565120beef45b1390 |
|
MD5 | ebd892c27f48c3c4343be1d4f15f2dfe |
|
BLAKE2b-256 | d5cd1b8a0a36da3f0aa75db01df33d6c2eadc9f4bab7675a3b5e829a6f296c4c |