首页 > 其他 > 详细

redis中hash数据类型

时间:2020-02-07 17:27:26      阅读:49      评论:0      收藏:0      [点我收藏+]
remoteSelf:1>hset website google "www.google.com"
"1"
remoteSelf:1>hget website
"ERR wrong number of arguments for 'hget' command"
remoteSelf:1>hget website google
"www.google.com"
remoteSelf:1>hset website baidu "www.baidu.com"
"1"
remoteSelf:1>hget website baidu
"www.baidu.com"
remoteSelf:1>hget website google
"www.google.com"

website相当于map的名字

google相当于map website中的key,"www.google.com"是key google的value

remoteSelf:1>hlen website
"2"
remoteSelf:1>hkeys website

 1)  "google"
 2)  "baidu"
 remoteSelf:1>hvals website
 1)  "www.google.com"
 2)  "www.baidu.com"

redis中hash数据类型

原文:https://www.cnblogs.com/eternityz/p/12273188.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!