redis hash类型的命令

1.hset

格式: hset key field value [field value ...](value是字符串)

返回值:设置成功的键值对的个数

2.hget:获取键值对

格式:hget key field

3.hexists:判断hash中是否存在指定

格式:hexists key field

4.hdel:删除哈希中的字段(del删除的是key,hdel删除的是field)

格式:hdel key field [field ...]

返回值:本次操作删个数除的字段

5.hkeys :获取hash中的字段

格式: hkeys key

6.hvals key 查看hash中所有的value

7.hgetall key field:一次可以查询多次hash的field

8.hmget key [field ..] 一次查询多个field

9.hlen key:获取哈希的元素个数

10.hsetns key field value 在字段不存在的情况下,设置hash中的字段和值

11.hincrby key field 加减整数

12 hincrbyfloat key field 加减小数

相关推荐
minihuabei1 小时前
linux centos 安装redis
linux·redis·centos
monkey_meng3 小时前
【Rust中多线程同步机制】
开发语言·redis·后端·rust
hlsd#4 小时前
go 集成go-redis 缓存操作
redis·缓存·golang
奶糖趣多多6 小时前
Redis知识点
数据库·redis·缓存
CoderIsArt7 小时前
Redis的三种模式:主从模式,哨兵与集群模式
数据库·redis·缓存
ketil2711 小时前
Redis - String 字符串
数据库·redis·缓存
王佑辉13 小时前
【redis】延迟双删策略
redis
生命几十年3万天13 小时前
redis时间优化
数据库·redis·缓存
Shenqi Lotus14 小时前
Redis-“自动分片、一定程度的高可用性”(sharding水平拆分、failover故障转移)特性(Sentinel、Cluster)
redis·sentinel·cluster·failover·sharding·自动分片·水平拆分
YMY哈18 小时前
Redis常见面试题(二)
redis