redis集合hash命令

2021-08-17 12:49:54 字數 611 閱讀 1092

1、hset    設定字段值

語法:hset  key field value

hset fern name lym

hset fern email [email protected]

2、hget    獲取字段值

語法:hget key field

hget fern name

3、hmset    批量設定字段值

語法:hmset key field1 value1 field2 value2 field3 value3

hmset fern name lym email [email protected]

4、hmget 獲取多個對應字段值

語法:hmget key field1 field2

hmget fern name email

5、hkeys    返回所有字段

語法:hkeys key

hkeys fern

6、hexists    字段是否存在

語法:hexists key field

hexists fern name

7、hlen    返回字段數量

語法:hlen key

hlen fern

Redis命令 雜湊 Hash

redis hash 是乙個string型別的field和value的對映表,hash特別適合用於儲存物件。redis 中每個 hash 可以儲存 232 1 鍵值對 40多億 例項 127.0.0.1 6379 hmset mykey name redis tutorial description...

Redis 雜湊 Hash 命令

redis hash 是乙個 string 型別的 field 字段 和 value 值 的對映表,hash 特別適合用於儲存物件。描述 命令hset 將雜湊表key中的字段field的值設為value hgetall 獲取在雜湊表中指定key的所有欄位和值 hget 獲取儲存在雜湊表中指定欄位的值...

Redis 雜湊 Hash 命令

redis hash 是乙個 string 型別的 field 字段 和 value 值 的對映表,hash 特別適合用於儲存物件。redis 中每個 hash 可以儲存 2 32 1 鍵值對 40多億 127.0.0.1 6379 hmset mykey name redis tutorial d...