我们可以将Redis中的Hashes类型看成具有String Key和String Value的map容器。所以该类型非常适合于存储值对象的信息。如Username、Password和Age等。如果Hash中包含很少的字段,那么该类型的数据也将仅占用很少的磁盘空间。每一个Hash可以存储4294967295个键值对。
1、HSET key field value
将哈希表 key 中的字段 field 的值设为 value。如果字段是哈希表中的一个新建字段,并且值设置成功,返回 1 。 如果哈希表中域字段已经存在且旧值已被新值覆盖,返回 0 。
127.0.0.1:6379> hset website google "www.google.com" (integer) 1 6379> hget website google " hset website google www.google.com (integer) 0 "
2、HGET key field
获取存储在哈希表中指定字段的值
"
3、HEXISTS key field
查看哈希表 key 中,指定的字段是否存在。如果哈希表含有给定字段,返回 1 。 如果哈希表不含有给定字段,或 key 不存在,返回 0 。
hgetall website 1) google2) 3) baidu4) www.baidu.com5) yahoo6) www.yahoo.com hexists website baidu (integer) 1
4、HDEL key field1 [field2]
删除一个或多个哈希表字段,不存在的字段将被忽略。返回值显示被成功删除字段的数量,不包括被忽略的字段。
hdel website baidu yahoo (integer) 2 "
5、HMGET key field1 [field2]
获取所有给定字段的值
www.yahoo.cn hmget website baidu yahoo "
6、HMSET key field1 value1 [field2 value2 ]
同时将多个 field-value (域-值)对设置到哈希表 key 中。
6379> hmset website sina www.sina.com netease 163.com OK hgetall website " 7) sina8) www.sina.com9) netease10) 163.com"
7、HKEYS key
获取所有哈希表中的字段
hkeys website "
8、HVALS key
获取哈希表中所有值
hvals website "
9、HGETALL key
获取在哈希表中指定 key 的所有字段和值
"
10、HINCRBY key field increment
为哈希表 key 中的指定字段的整数值加上增量 increment 。返回增加之后的结果。
6379> hset configuration connections 106379> hincrby configuration connections 515 hget configuration connections 15"
11、HINCRBYFLOAT key field increment
为哈希表 key 中的指定字段的浮点数值加上增量 increment 。
6379> hset configuration amount 10.336379> hincrbyfloat configuration amount 4.67 hget configuration amount "
12、HSETNX key field value
只有在字段 field 不存在时,设置哈希表字段的值。
hsetnx website google hellogoogle (integer) hsetnx website xiaomi www.mi.com (integer) xiaomiwww.mi.com"
13、HSCAN key cursor [MATCH pattern] [COUNT count]
迭代哈希表中的键值对。
原文链接:https://www.f2er.com/redis/996114.html