首頁 >後端開發 >Python教學 >python下 redis的使用

python下 redis的使用

高洛峰
高洛峰原創
2016-10-19 11:50:051018瀏覽

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

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

或直接使用pip安裝

使用:

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() #資料庫中多少個條數



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn