python下redis安裝和使用

pythontab發表於2012-12-20

python下redis安裝

用python操作redis資料庫,先下載redis-py模組下載地址https://github.com/andymccurdy/redis-py

shell# wget https://github.com/andymccurdy/redis-py


然後解壓

在解壓目錄執行 python setup.py install安裝模組即可

安裝完成

使用:

import redis
 
r = redis.Redis(host=’localhost’, port=6379, db=0)
 
r['test'] = ‘test’ #或者可以r.set(‘test’, ‘test’) 設定key
 
r.get(‘test’)  #獲取test的值
 
r.delete(‘test’) #刪除這個key
 
r.flushdb() #清空資料庫
 
r.keys() #列出所有key
 
r.exists(‘test’) #檢測這個key是否存在
 
r.dbsize() #資料庫中多少個條數


相關文章