python下redis安裝
用python操作redis資料庫,先下載redis-py模組下載位址https://github.com/andymccurdy/redis-py
shell# wget https://github.com/andycurdy/redis -py
然後解壓縮
在解壓目錄運行python setup.py install安裝模組即可
安裝完成
dis.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() #清除資料庫
出所有key
r.exists('test') #偵測這個key是否存在
r.dbsize() #資料庫中多少個條數
r.dbsize() #資料庫中多少個條數