https://github.com/zonyitoo/redis-py
A Redis implementation with Python 3.4
https://github.com/zonyitoo/redis-py
Last synced: 6 days ago
JSON representation
A Redis implementation with Python 3.4
- Host: GitHub
- URL: https://github.com/zonyitoo/redis-py
- Owner: zonyitoo
- Created: 2014-06-14T19:59:32.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-17T05:36:24.000Z (about 11 years ago)
- Last Synced: 2025-02-05T08:37:10.550Z (5 months ago)
- Language: Python
- Size: 191 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
Awesome Lists containing this project
README
Redis
~~~~~.. image:: https://travis-ci.org/zonyitoo/redis-py.svg?branch=master
:target: https://travis-ci.org/zonyitoo/redis-pyRedis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes
Documents could be found in http://redis.io.
*Yet another redis implementation. This version of Redis must not replace the official one.*
Requirements
------------* Python >= 3.4.1
Usage
-----.. code:: bash
$ pyvenv .venv
$ . .venv/bin/activate
$ python setup.py install
$ redis-server