共计 1165 个字符,预计需要花费 3 分钟才能阅读完成。
自动写代码机器人,免费开通
本篇文章给大家分享的是有关如何在 redis 中实现 hash 表的内容,丸趣 TV 小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着丸趣 TV 小编一起来看看吧。
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
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
返回值:
被成功删除字段的数量,不包括被忽略的字段。
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
内容扩展:
Redis Hdel 命令用于删除哈希表 key 中的一个或多个指定字段,不存在的字段将被忽略。
语法
redis Hdel 命令基本语法如下:
redis 127.0.0.1:6379 HDEL KEY_NAME FIELD1.. FIELDN
可用版本
= 2.0.0
返回值
被成功删除字段的数量,不包括被忽略的字段。
实例
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
以上就是如何在 redis 中实现 hash 表的内容,丸趣 TV 小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注丸趣 TV 行业资讯频道。
向 AI 问一下细节
正文完