If you trust me, do this:
curl https://raw.github.com/gist/3868967/30ed8db63ea701e1ad18dabbecfc8df0ffd8b195/install.sh > install.sh
sh install.sh
class RedisTools: | |
''' | |
A set of utility tools for interacting with a redis cache | |
''' | |
def __init__(self): | |
self._queues = ["default", "high", "low", "failed"] | |
self.get_redis_connection() | |
def get_redis_connection(self): |