Total Pageviews

Thursday 20 March 2014

一个基于python的程序-rache

Installation

RACHE works with any Python version from 2.6 to 3.3. You only need a working Redis server.
pip install rache

Configuration

By default RACHE connects to Redis on localhost, port 6379, database 0. To override this, set a REDIS_URL environment variable:
REDIS_URL=redis://redis.example.com:6379/2
RACHE prefixes all its Redis keys with rache:. You can override this by setting the RACHE_REDIS_PREFIX environment variable.

from https://github.com/brutasse/rache