# coding=UTF-8 import redis rc = redis.Redis(host='localhost', port=6379, db=1) rc.set('key1', 'value1') # 現在のDBのキーを全て削除する rc.flushdb() print(rc.get('key1'))補足
ubuntuで以下のコマンドでredisとredis-pyのインストールができます。
sudo apt-get install redis-server
sudo apt-get install python-redis
動作環境
Python 2.6.6, redis-py (2.0.0-1)