当前位置:网站首页>First understand redis' data structure - string
First understand redis' data structure - string
2022-06-24 19:52:00 【just_ peanut】
Redis Five data types commonly used in :
1、 character string (String)
2、 String list (List)
3、 Ordered string collection (Sorted list)
4、 Hash (Hash)
5、 String collection (Set)
One 、 Storage String Common commands
a. assignment set
b, Value get
c. Delete del
d. Increase or decrease in value incr/decr/incrby/decrby
e. The extension command append
[email protected] redis]# ./bin/redis-cli
127.0.0.1:6379> set girl Pretty
OK
127.0.0.1:6379> get girl
"Pretty"
127.0.0.1:6379> getset girl Lovely
"Pretty"
127.0.0.1:6379> get girl
"Lovely"
127.0.0.1:6379> set boy Hot
OK
127.0.0.1:6379> get boy
"Hot"
127.0.0.1:6379> del boy
(integer) 1
127.0.0.1:6379> get boy
(nil)
127.0.0.1:6379> incr num
(integer) 1
127.0.0.1:6379> get num
"1"
127.0.0.1:6379> incr num
(integer) 2
127.0.0.1:6379> get num
"2"
127.0.0.1:6379> decr num
(integer) 1
127.0.0.1:6379> get num
"1"
127.0.0.1:6379> decr num2
(integer) -1
127.0.0.1:6379> incrby num 5
(integer) 6
127.0.0.1:6379> decrby num 2
(integer) 4
127.0.0.1:6379> get num
"4"
127.0.0.1:6379>
127.0.0.1:6379>
127.0.0.1:6379> append num 4
(integer) 2
127.0.0.1:6379> get num
"44"
127.0.0.1:6379>
边栏推荐
- How to use R package ggtreeextra to draw evolution tree
- R语言corrplot相关热图美化实例分析
- An accident caused by a MySQL misoperation cannot be withstood by High Availability!
- PingCAP 入选 2022 Gartner 云数据库“客户之声”,获评“卓越表现者”最高分
- Microsoft Office Excel 2013 2016 graphic tutorial on how to enable macro function
- The agile way? Is agile development really out of date?
- php OSS文件读取和写入文件,workerman生成临时文件并输出浏览器下载
- Example analysis of corrplot related heat map beautification in R language
- cdc sql表里面的datetime要用什么类型替换
- IP address to integer
猜你喜欢
Capacitive inching touch switch module control (stm32f103c8t6)
Multi cloud mode is not a "master key"
starring V6平台开发接出点流程
R for Data Science (note) -- data transformation (select basic use)
Using dynamic time warping (DTW) to solve the similarity measurement of time series and the similarity identification analysis of pollution concentration in upstream and downstream rivers
Confirm whether the host is a large terminal or a small terminal
60 divine vs Code plug-ins!!
What are the functions of IBPs open source form designer?
Drawing DEM with GEE gracefully
Unity移动端游戏性能优化简谱之 以引擎模块为划分的CPU耗时调优
随机推荐
Multi cloud mode is not a "master key"
全链路业务追踪落地实践方案
Drawing DEM with GEE gracefully
Bytebase 加入阿里云 PolarDB 开源数据库社区
Confirm whether the host is a large terminal or a small terminal
工作6年,月薪3W,1名PM的奋斗史
MySQL binlog data source configuration document, please share
Openstack actual installation and deployment tutorial, openstack installation tutorial
How to deal with the problem that the Flink CDC reads MySQL in full and always reports this error
What are the functions of IBPs open source form designer?
我链接mysql 报这个错 是啥意思呀?
An accident caused by a MySQL misoperation cannot be withstood by High Availability!
一次 MySQL 误操作导致的事故,高可用都不顶不住!
Write a positive integer to the node and return a floating-point number multiplied by 0.85 when reading the node
NFT pledge liquidity mining system development technology
Working for 6 years with a monthly salary of 3W and a history of striving for one PM
R language 4.1.0 software installation package and installation tutorial
Landcover100, planned land cover website
8 challenges of BSS application cloud native deployment
R for Data Science (note) -- data transformation (select basic use)