Python redis資料查詢 Hash

2021-10-07 16:28:10 字數 1172 閱讀 9831

連線redis資料庫:

import redis,time

conn_pool = redis.connectionpool(host="******",db=0, port=6379)

r = redis.redis(connection_pool=conn_pool)

keys = r.keys() #獲取所有的key

key-value資料型別,如下,獲取value

結果:redis 資料庫hash資料型別key-hash key-hash value,如下,獲取鍵值:

print(r.hgetall("***key"))#獲取key所有hash key-hash value鍵值對

piccount = r.hget("***key","piccount") #獲取key中hash key為"piccount"的hash value

print(piccount,type(piccount))

結果:

從上邊的結果可看出獲取value值資料型別都是'bytes',有時需要bytes與str需要相互轉換,可用如下方式:

# str to bytes  

sb = bytes(s, encoding = "utf8")

# bytes to str

bs = str(b, encoding = "utf8")

jmeter根據查詢資料查詢結果

前兩天試了 一下根據請求查詢出的userid,查詢該userid的資訊。1.新建 1 新建執行緒組 2 新建http請求預設值 3 新建http cookie管理器 4 新建http資訊頭管理器 5 新建登入請求,並新增正規表示式獲取token 2.迴圈控制器 1 新增迴圈控制器,設定迴圈次數 2 ...

ABAP 資料查詢

並列查詢。report z select for all entries.data begin of wa spfli,carrid type spfli carrid,connid type spfli connid,end of wa spfli,begin of wa scarr,carrid...

MySQL資料查詢

1.基本查詢語句 select語句是最常用的查詢語句,它的使用方式有些複雜,但功能卻相當強大。select selection list 要查詢的內容,選擇哪些列 from資料表名 制定資料表 where primary constraint 查詢時需要滿足的條件,行必須滿足條件 2.單錶查詢 單錶...