用python作業redis資料庫,先下載redis-py模組下載位址https://github.com/andymccurdy/redis-py
##在解壓縮目錄運行python setup.py install安裝模組或直接使用pip安裝使用:import redisr = redis.Redis(host= 'localhost', port=6379, db=0)r['test'] = 'test' #或可以r.set('test', 'test') 設定r.get('test') #取得test的值r.delete('test') #刪除這個key
r.flushdb() #清空資料庫
r.keys() #列出所有keyr.exists('test') #偵測這個key是否存在r.dbsize() #資料庫中多少個條數
#
以上是使用python下redis的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!