hash:
Redis hash是一個string類型的field和value的映射表,hash特別適合用于存儲對象。
Redis 中每個hash可以存儲 232 - 1鍵值對(40多億)。
實例:
127.0.0.1:6379> HMSET runoobkey name "redis tutorial" description "redis basic commands for caching" likes 20
visitors 23000
OK
127.0.0.1:6379> HGETALL runoobkey
1) "name"
2) "redis tutorial"
3) "description"
4) "redis basic commands for caching"
5) "likes"
6) "20"
7) "visitors"
8) "23000"
刪除命令:
Hdel命令
Redis Hdel命令用于刪除哈希表key中的一個或多個指定字段,不存在的字段將被忽略。
redis Hdel 命令基本語法如下:
redis 127.0.0.1:6379> HDEL KEY_NAME FIELD1.. FIELDN
返回值:
被成功刪除字段的數(shù)量,不包括被忽略的字段。
redis 127.0.0.1:6379> HSET myhash field1 "foo"
(integer) 1
redis 127.0.0.1:6379> HDEL myhash field1
(integer) 1
redis 127.0.0.1:6379> HDEL myhash field2
(integer) 0
內(nèi)容擴展:
Redis Hdel 命令用于刪除哈希表 key 中的一個或多個指定字段,不存在的字段將被忽略。
語法
redis Hdel 命令基本語法如下:
redis 127.0.0.1:6379> HDEL KEY_NAME FIELD1.. FIELDN
可用版本
>= 2.0.0
返回值
被成功刪除字段的數(shù)量,不包括被忽略的字段。
實例
redis 127.0.0.1:6379> HSET myhash field1 "foo"
(integer) 1
redis 127.0.0.1:6379> HDEL myhash field1
(integer) 1
redis 127.0.0.1:6379> HDEL myhash field2
(integer) 0
您可能感興趣的文章:- Python操作redis實例小結【String、Hash、List、Set等】
- Redis String 類型和 Hash 類型學習筆記與總結
- Redis教程(四):Hashes數(shù)據(jù)類型
- SpringBoot+Redis實現(xiàn)數(shù)據(jù)字典的方法
- python redis存入字典序列化存儲教程
- redis中Hash字典操作的方法
- Redis字典實現(xiàn)、Hash鍵沖突及漸進式rehash詳解