Skip to content

relekang/rob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rob

Build Status

Persistent python objects with Redis backend.

pip install rob

JsonObject

An object that does a JSON dump of the dictionary and save it in a Redis hash.

Needs to define HASH_KEY - the key to the hash.

HashObject

An object that saves its dictionary in a Redis hash. Using the HMSET. It uses a list to keep track of saved objects.

Needs to define HASH_KEY - a key that is used as prefix to the list and as the key to the hash.

Mixins

The mixins below will work with all the object types.

Autosave mixin

A mixin that calls save every time an attribute is set.

Examples

Simple object

from redis import Redis


class ExampleObject(JsonObject):
    HASH_KEY = 'exampleobject'
    redis = Redis()

Autosave object

from redis import Redis


class ExampleAutosaveObject(JsonObject, AutosaveMixin):
    HASH_KEY = 'exampleobject'
    redis = Redis()

About

Make python objects persistent with Redis.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published