# coding=UTF-8 import redis rc = redis.Redis(host='localhost', port=6379) rc.delete('hash1') # hashのfieldにvalueを設定 rc.hset('hash1', 'field1', 'value1') rc.hset('hash1', 'field2', 'value2') # hashからfieldを削除 rc.hdel('hash1', 'field1') # fieldの存在確認 -> False print(rc.hexists('hash1', 'field1')) # fieldの存在確認 -> True print(rc.hexists('hash1', 'field2'))補足
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)
0 件のコメント:
コメントを投稿