Info: | RedisEngine is a MongoEngine-inspired lib for ORM-like manipulation of Redis-powered cache in Python. |
---|---|
Repository: | https://github.com/RedisEngine/redisengine |
RedisEngine is intended to be an ORM-like Object-To-Redis-Type-Mapper written in Python. This is a work in progress, as several things are pending completion, like: exhaustive tests, CI, documentation and API reference.
Given the above, any usage other than experimental is strongly discouraged for the time being.
Future releases will include integration with Django's and MongoEngine's signal framework/module so that cache management can be automated in a customizable fashion.
I found myself in an occasional need of cache validation which usually resulted in a more entropic (and WET) code to cope with. It naturally occurred this would be the best course of action.
pip install -U redisengine
.
Alternatively, download the source and run
python setup.py install
.
- redis>=2.10.5
To run the test suite, ensure you are running a local instance of Redis on
the standard port, and run: python setup.py nosetests
.
Run selected tests with:
$ python setup.py nosetests --tests tests/fields/test_fields.py:FieldTest.test_default_values_nothing_set -s
Yet to come
Yet to come