一、原始碼如下:
import二、執行結果redis
#建立連線
r = redis.redis(host="
192.168.43.110
",port=6379,db=0)
#設定鍵值
r.set("
name
","belief")
r.set(
"name_ch
","信仰")
#獲取值,返回的是bytes型別資料
res = r.get("
name")
#print(type(res))
#decode解碼
res2 = r.get("
name
").decode()
#print(type(res2))
#列印結果
(res)
(res2)
#獲取所有的key
(r.keys())
#print(type(r.keys()))
#遍歷所有的key,列印key和value
for k in
r.keys():
#print(type(k))
print("
:".format(k=k.decode(),v=r.get(k).decode()))
#獲取n開頭的key
print(r.keys("
n*"))
ps:圖中的"a":"123"和"b":"456"是之前新增到redis下的資料庫db0
怎麼用python操作redis
2.字串相關操作 3.使用sorted set 1 安裝redis 2 使用連線池生成連線import redis from django.conf import settings class connectionpoolutils 初始化乙個連線池,全域性唯一 pool redis.connect...
python連線redis解析protobuf資料
這邊說的是windows下環境配置 本人在嘗試安裝2.7.0版本後手動安裝 pip 和protobuf模組,發現protobuf2.5.0版本可以成功安裝但是protobuf2.6.1版本安裝各種報錯,所以使用protobu2.6.1 python protobuf環境配置,及其簡單使用,軟體都已經...
python怎麼連線MongoDB資料庫
使用pymongo模組連線mongodb資料庫 coding utf 8 from pymongo import mongoclient 建立mongodb資料庫連線 client mongoclient localhost 27017 連線所需資料庫,test為資料庫名 db client.tes...