当前位置:网站首页>redis中value/hush
redis中value/hush
2022-07-01 11:19:00 【每日一悟】
无hash时,用键值对
set six::name "6"
get six::name
set six::age 18
get six::age
keys six * ==> six::name six::age
有hash时
hset six name yyds
hmset six age 18 address bj
hget six name "yyds"
hget six age "18"
hmget six name age "yyds" "18"
hkeys six "name" "age" "address"
hvals six "yyds" "18" "bj"
hgetall six "name" "yyds" "age" "18" "address" "bj"
hincrbyfloat six age 0.5
hget six age "18.5"
hincrbyfloat six age -1
hget six age "17.5"
边栏推荐
- 华泰证券网上开户安全吗?
- 【MAUI】为 Label、Image 等控件添加点击事件
- [buuctf.reverse] 144_[XMAN2018排位赛]easyvm
- 京东与腾讯续签合作:向腾讯发行A类股 价值最高达2.2亿美元
- Huawei equipment is configured with large network WLAN basic services
- 树莓派4B安装tensorflow2.0[通俗易懂]
- Brief analysis of edgedb architecture
- 2022/6/28学习总结
- Get key code
- [AI information monthly] 350 + resources! All the information and trends that can't be missed in June are here! < Download attached >
猜你喜欢
随机推荐
Numpy的矩阵
Exposure:A White-Box Photo Post-Processing Framework阅读札记
MIT's latest paper, "the need for interpretable features: motivation and classification": building interpretability in the constituent elements of machine learning models
MySQL in and not in() empty list error
China's cellular Internet of things users have reached 1.59 billion, and are expected to surpass mobile phone users within this year
Development overview of fund internationalization
The developer said, "this doesn't need to be tested, just return to the normal process". What about the testers?
微信小程序开发 – 用户授权登陆「建议收藏」
solo 可以通过 IPV6 访问吗?
树莓派4B安装tensorflow2.0[通俗易懂]
达梦数据冲刺科创板:拟募资24亿 冯裕才曾为华科教授
Applymiddleware principle
Spam filtering challenges
Export and import of incluxdb on WIN platform
妙啊!MarkBERT
The first anniversary of the data security law, which four major changes are coming?
sdp 协议中的packetization-mode方式和三种流传输模式
CVPR 2022 | Virtual Correspondence: Humans as a Cue for Extreme-View Geometry
Wechat applet development - user authorization to log in to "suggestions collection"
Oracle和JSON的結合








