Home  >  Article  >  Database  >  A brief introduction to the use of Redis tutorial

A brief introduction to the use of Redis tutorial

coldplay.xixi
coldplay.xixiforward
2021-04-12 17:24:383812browse

A brief introduction to the use of Redis tutorial

1. Introduction to Redis
What is Redis? Full name: REmote DIctionary Server. It is a log-type, Key-Value high-performance database that supports the network, can be based on memory and can be persisted, and provides APIs in multiple languages. It is often called a data structure server because of the value (value ) can be of types such as String, Hash (Map), list, sets and sorted sets:
String: String
Hash: Hash
List: List
Set: Set
Sorted Set: Ordered set
is a non-relational database relative to the relational database.

Recommended (free): redis

2. Advantages
Redis and other key-value caches The product has the following three features:

  • Redis supports data persistence. The data in the memory can be saved in the disk, and can be loaded again for use when restarting.
  • Redis not only supports simple key-value type data, but also provides storage of data structures such as list, set, zset, and hash.
  • Redis supports data backup, that is, data backup in master-slave mode.

3. Redis installation
Redis installation is very simple, download address: https://github.com/MSOpenTech/redis/releases. Then download "Redis-x64-xx.x.xxx.zip" and put it in your favorite location on the hard disk to decompress it. Double-click "redis-server.exe" to start the Redis service according to the default configuration; double-click "redis-cli. exe" to open the client console and you can perform commands to operate the Redis service.
You can also:
Open a cmd window and use the cd command to switch directories to C:\redis and run redis-server.exe redis.windows.conf.
Execute redis-cli.exe -h 127.0.0.1 -p 6379 Enter the client mode,
“-h” Specify the Redis server host
“-p” Specify the Redis server port

4. Redis configuration
The Redis configuration file is located in the Redis installation directory, and the file name is redis.conf.
You can view or set configuration items through the **“CONFIG”** command.

CONFIG GET 'CONFIG_SETTING_NAME' //获取对应的参数配置
CONFIG GET * //获取所有的参数配置
CONFIG SET "CONFIG_SETTING_NAME" "NEW_CONFIG_VALUE"//设置对应的参数值

Parameter description
The redis.conf configuration item description is as follows:

1.Redis does not run as a daemon process by default and can be modified through this configuration item , use yes to enable the daemon process

    daemonize no

2. When Redis runs in daemon mode, Redis will write the pid to the /var/run/redis.pid file by default, which can be specified through pidfile

    pidfile /var/run/redis.pid

3. Specify the Redis listening port. The default port is 6379. The author explained in one of his blog posts why 6379 was chosen as the default port because 6379 is the number corresponding to MERZ on the phone button, and MERZ is taken from the Italian singer Alessia Merz. The name

    port 6379

4. The bound host address

    bind 127.0.0.1

5. When the client is idle for a long time, the connection is closed. If it is specified as 0, it means that the function is turned off

  timeout 300

6. Specify the logging level. Redis supports a total of four levels: debug, verbose, notice, and warning. The default is verbose

 loglevel verbose

7. Logging mode. The default is standard output. If Redis is configured as a guardian Run in process mode, and the logging mode is configured as standard output, the log will be sent to /dev/null

    logfile stdout

8. Set the number of databases, the default database is 0, you can use the SELECT command in Connect to the specified database id

    databases 16

9. Specify the period of time and how many update operations there are to synchronize the data to the data file. Multiple conditions can be matched

    save <seconds> <changes>

Redis default configuration Three conditions are provided in the file:

    save 900 1

    save 300 10

    save 60 10000

respectively means 1 change within 900 seconds (15 minutes), 10 changes within 300 seconds (5 minutes) and 10000 changes within 60 seconds.

10. Specify whether to compress the data when storing it in the local database. The default is yes. Redis uses LZF compression. If you want to save CPU time, you can turn off this option, but it will cause the database file to become huge

rdbcompression yes

11. Specify the local database file name, the default value is dump.rdb

dbfilename dump.rdb

12. Specify the local database storage directory

dir ./

13. Set when the local machine serves slav, set The IP address and port of the master service. When Redis starts, it will automatically synchronize data from the master

slaveof <masterip> <masterport>

14. When the master service is password protected, the password for the slav service to connect to the master

masterauth <master-password>

15. Set the Redis connection password. If the connection password is configured, the client needs to provide the password through the AUTH command when connecting to Redis. The default is closed

requirepass foobared

16. Set the maximum number of client connections at the same time. The default is none. Limit, the number of client connections that Redis can open at the same time is the maximum number of file descriptors that the Redis process can open. If maxclients 0 is set, it means there is no limit. When the number of client connections reaches the limit, Redis will close the new connection and return the max number of clients reached error message to the client

maxclients 128

17.指定Redis最大内存限制,Redis在启动时会把数据加载到内存中,达到最大内存后,Redis会先尝试清除已到期或即将到期的Key,当此方法处理 后,仍然到达最大内存设置,将无法再进行写入操作,但仍然可以进行读取操作。Redis新的vm机制,会把Key存放内存,Value会存放在swap区

maxmemory <bytes>

18.指定是否在每次更新操作后进行日志记录,Redis在默认情况下是异步的把数据写入磁盘,如果不开启,可能会在断电时导致一段时间内的数据丢失。因为 redis本身同步数据文件是按上面save条件来同步的,所以有的数据会在一段时间内只存在于内存中。默认为no

appendonly no

19.指定更新日志文件名,默认为appendonly.aof

appendfilename appendonly.aof

20.指定更新日志条件,共有3个可选值:
no:表示等操作系统进行数据缓存同步到磁盘(快)
always:表示每次更新操作后手动调用fsync()将数据写到磁盘(慢,安全)
everysec:表示每秒同步一次(折衷,默认值)

appendfsync everysec

21.指定是否启用虚拟内存机制,默认值为no,简单的介绍一下,VM机制将数据分页存放,由Redis将访问量较少的页即冷数据swap到磁盘上,访问多的页面由磁盘自动换出到内存中(在后面的文章我会仔细分析Redis的VM机制)

vm-enabled no

22.虚拟内存文件路径,默认值为/tmp/redis.swap,不可多个Redis实例共享

vm-swap-file /tmp/redis.swap

23.将所有大于vm-max-memory的数据存入虚拟内存,无论vm-max-memory设置多小,所有索引数据都是内存存储的(Redis的索引数据 就是keys),也就是说,当vm-max-memory设置为0的时候,其实是所有value都存在于磁盘。默认值为0

vm-max-memory 0

24.Redis swap文件分成了很多的page,一个对象可以保存在多个page上面,但一个page上不能被多个对象共享,vm-page-size是要根据存储的 数据大小来设定的,作者建议如果存储很多小对象,page大小最好设置为32或者64bytes;如果存储很大大对象,则可以使用更大的page,如果不 确定,就使用默认值

vm-page-size 32

25.设置swap文件中的page数量,由于页表(一种表示页面空闲或使用的bitmap)是在放在内存中的,,在磁盘上每8个pages将消耗1byte的内存。

 vm-pages 134217728

26.设置访问swap文件的线程数,最好不要超过机器的核数,如果设置为0,那么所有对swap文件的操作都是串行的,可能会造成比较长时间的延迟。默认值为4

vm-max-threads 4

27.设置在向客户端应答时,是否把较小的包合并为一个包发送,默认为开启

glueoutputbuf yes

28.指定在超过一定的数量或者最大的元素超过某一临界值时,采用一种特殊的哈希算法

hash-max-zipmap-entries 64
hash-max-zipmap-value 512

29.指定是否激活重置哈希,默认为开启(后面在介绍Redis的哈希算法时具体介绍)

activerehashing yes

30.指定包含其它的配置文件,可以在同一主机上多个Redis实例之间使用同一份配置文件,而同时各个实例又拥有自己的特定配置文件

include /path/to/local.conf

五、Redis 数据类型
String: 字符串
Hash: 散列
List: 列表
Set: 集合
Sorted Set: 有序集合

1.String(字符串)

string是redis最基本的类型,你可以理解成与Memcached一模一样的类型,一个key对应一个value。
string类型是二进制安全的。意思是redis的string可以包含任何数据。比如jpg图片或者序列化的对象 。
string类型是Redis最基本的数据类型,一个键最大能存储512MB。

redis 127.0.0.1:6379> SET name "xlosy"
OK
redis 127.0.0.1:6379> GET name
"xlosy"

在以上实例中我们使用了 Redis 的 SET 和 GET 命令。键为 name,对应的值为 xlosy。

2.Hash(哈希)
Redis hash 是一个键值(key=>value)对集合。
Redis hash 是一个 string 类型的 field 和 value 的映射表,hash 特别适合用于存储对象。

redis> HMSET myhash field1 "Hello" field2 "World"
"OK"
redis> HGET myhash field1
"Hello"
redis> HGET myhash field2
"World"

实例中我们使用了 Redis HMSET, HGET 命令,HMSET 设置了两个 field=>value 对, HGET 获取对应 field 对应的 value。

3.List(列表)
Redis 列表是简单的字符串列表,按照插入顺序排序。你可以添加一个元素到列表的头部(左边)或者尾部(右边)。

redis 127.0.0.1:6379> lpush xlosy redis
(integer) 1
redis 127.0.0.1:6379> lpush xlosy mongodb
(integer) 2
redis 127.0.0.1:6379> lpush xlosy rabitmq
(integer) 3
redis 127.0.0.1:6379> lrange xlosy 0 10
1) "rabitmq"
2) "mongodb"
3) "redis"

列表最多可存储 232 - 1 元素 (4294967295, 每个列表可存储40多亿)。

4.Set(集合)
Redis的Set是string类型的无序集合。
集合是通过哈希表实现的,所以添加,删除,查找的复杂度都是O(1)。

redis 127.0.0.1:6379> sadd xlosy redis
(integer) 1
redis 127.0.0.1:6379> sadd xlosy mongodb
(integer) 1
redis 127.0.0.1:6379> sadd xlosy rabitmq
(integer) 1
redis 127.0.0.1:6379> sadd xlosy rabitmq
(integer) 0
redis 127.0.0.1:6379> smembers xlosy 
1) "redis"
2) "rabitmq"
3) "mongodb"

注意:以上实例中 rabitmq 添加了两次,但根据集合内元素的唯一性,第二次插入的元素将被忽略。
集合中最大的成员数为 232 - 1(4294967295, 每个集合可存储40多亿个成员)。

5.zset(sorted set:有序集合)
Redis zset 和 set 一样也是string类型元素的集合,且不允许重复的成员。
不同的是每个元素都会关联一个double类型的分数。redis正是通过分数来为集合中的成员进行从小到大的排序。
zset的成员是唯一的,但分数(score)却可以重复。

redis 127.0.0.1:6379> zadd xlosy 0 redis
(integer) 1
redis 127.0.0.1:6379> zadd xlosy 0 mongodb
(integer) 1
redis 127.0.0.1:6379> zadd xlosy 0 rabitmq
(integer) 1
redis 127.0.0.1:6379> zadd xlosy 0 rabitmq
(integer) 0
redis 127.0.0.1:6379> > ZRANGEBYSCORE xlosy 0 1000
1) "mongodb"
2) "rabitmq"
3) "redis"

六、Redis命令

Ping:命令验证服务是否启动

$redis-cli -h 127.0.0.1 -p 6379 -a "mypass"//“-h”是主机地址,“-p”是主机端口,“-a”是主机密码
redis 127.0.0.1:6379> PING
PONG

如果执行ping命令后输出pong则表示Redis服务器运行正常。

**1).Redis对键(key)操作的命令 **

SET: 添加键值

redis 127.0.0.1:6379> SET xlosykey redis
OK

DEL:删除已经存在的键值

redis 127.0.0.1:6379> DEL xlosykey 
(integer) 1

1 DEL key
该命令用于在 key 存在时删除 key。
2 DUMP key
序列化给定 key ,并返回被序列化的值。
3 EXISTS key
检查给定 key 是否存在。
4 EXPIRE key seconds
为给定 key 设置过期时间。
5 EXPIREAT key timestamp
EXPIREAT 的作用和 EXPIRE 类似,都用于为 key 设置过期时间。 不同在于 EXPIREAT 命令接受的时间参数是 UNIX 时间戳(unix timestamp)。
6 PEXPIRE key milliseconds
设置 key 的过期时间以毫秒计。
7 PEXPIREAT key milliseconds-timestamp
设置 key 过期时间的时间戳(unix timestamp) 以毫秒计
8 KEYS pattern
查找所有符合给定模式( pattern)的 key 。
9 MOVE key db
将当前数据库的 key 移动到给定的数据库 db 当中。
10 PERSIST key
移除 key 的过期时间,key 将持久保持。
11 PTTL key
以毫秒为单位返回 key 的剩余的过期时间。
12 TTL key
以秒为单位,返回给定 key 的剩余生存时间(TTL, time to live)。
13 RANDOMKEY
从当前数据库中随机返回一个 key 。
14 RENAME key newkey
修改 key 的名称
15 RENAMENX key newkey
仅当 newkey 不存在时,将 key 改名为 newkey 。
16 TYPE key
返回 key 所储存的值的类型。
更多命令请参考:https://redis.io/commands

2).Redis对字符串(String)操作的命令

redis 127.0.0.1:6379> SET xlosykey redis
OK
redis 127.0.0.1:6379> GET xlosykey
"redis"

1 SET key value
设置指定 key 的值
2 GET key
获取指定 key 的值。
3 GETRANGE key start end
返回 key 中字符串值的子字符
4 GETSET key value
将给定 key 的值设为 value ,并返回 key 的旧值(old value)。
5 GETBIT key offset
对 key 所储存的字符串值,获取指定偏移量上的位(bit)。
6 MGET key1 [key2…]
获取所有(一个或多个)给定 key 的值。
7 SETBIT key offset value
对 key 所储存的字符串值,设置或清除指定偏移量上的位(bit)。
8 SETEX key seconds value
将值 value 关联到 key ,并将 key 的过期时间设为 seconds (以秒为单位)。
9 SETNX key value
只有在 key 不存在时设置 key 的值。
10 SETRANGE key offset value
用 value 参数覆写给定 key 所储存的字符串值,从偏移量 offset 开始。
11 STRLEN key
返回 key 所储存的字符串值的长度。
12 MSET key value [key value …]
同时设置一个或多个 key-value 对。
13 MSETNX key value [key value …]
同时设置一个或多个 key-value 对,当且仅当所有给定 key 都不存在。
14 PSETEX key milliseconds value
这个命令和 SETEX 命令相似,但它以毫秒为单位设置 key 的生存时间,而不是像 SETEX 命令那样,以秒为单位。
15 INCR key
将 key 中储存的数字值增一。
16 INCRBY key increment
将 key 所储存的值加上给定的增量值(increment) 。
17 INCRBYFLOAT key increment
将 key 所储存的值加上给定的浮点增量值(increment) 。
18 DECR key
将 key 中储存的数字值减一。
19 DECRBY key decrement
key 所储存的值减去给定的减量值(decrement) 。
20 APPEND key value
如果 key 已经存在并且是一个字符串, APPEND 命令将指定的 value 追加到该 key 原来值(value)的末尾。
更多命令请参考:https://redis.io/commands

3).Redis对哈希(Hash)操作的命令

127.0.0.1:6379>  HMSET xlosykey name "redis tutorial" description "redis basic commands for caching" likes 20 visitors 23000
OK
127.0.0.1:6379>  HGETALL xlosykey 
1) "name"
2) "redis tutorial"
3) "description"
4) "redis basic commands for caching"
5) "likes"
6) "20"
7) "visitors"
8) "23000"

1 HDEL key field1 [field2]
删除一个或多个哈希表字段
2 HEXISTS key field
查看哈希表 key 中,指定的字段是否存在。
3 HGET key field
获取存储在哈希表中指定字段的值。
4 HGETALL key
获取在哈希表中指定 key 的所有字段和值
5 HINCRBY key field increment
为哈希表 key 中的指定字段的整数值加上增量 increment 。
6 HINCRBYFLOAT key field increment
为哈希表 key 中的指定字段的浮点数值加上增量 increment 。
7 HKEYS key
获取所有哈希表中的字段
8 HLEN key
获取哈希表中字段的数量
9 HMGET key field1 [field2]
获取所有给定字段的值
10 HMSET key field1 value1 [field2 value2 ]
同时将多个 field-value (域-值)对设置到哈希表 key 中。
11 HSET key field value
将哈希表 key 中的字段 field 的值设为 value 。
12 HSETNX key field value
只有在字段 field 不存在时,设置哈希表字段的值。
13 HVALS key
获取哈希表中所有值
14 HSCAN key cursor [MATCH pattern] [COUNT count]
迭代哈希表中的键值对。
更多命令请参考:https://redis.io/commands

4).Redis对列表(List)操作的命令

redis 127.0.0.1:6379> LPUSH xlosykey redis
(integer) 1
redis 127.0.0.1:6379> LPUSH xlosykey mongodb
(integer) 2
redis 127.0.0.1:6379> LPUSH xlosykey mysql
(integer) 3
redis 127.0.0.1:6379> LRANGE xlosykey 0 10
1) "mysql"
2) "mongodb"
3) "redis"

1 BLPOP key1 [key2 ] timeout
移出并获取列表的第一个元素, 如果列表没有元素会阻塞列表直到等待超时或发现可弹出元素为止。
2 BRPOP key1 [key2 ] timeout
移出并获取列表的最后一个元素, 如果列表没有元素会阻塞列表直到等待超时或发现可弹出元素为止。
3 BRPOPLPUSH source destination timeout
从列表中弹出一个值,将弹出的元素插入到另外一个列表中并返回它; 如果列表没有元素会阻塞列表直到等待超时或发现可弹出元素为止。
4 LINDEX key index
通过索引获取列表中的元素
5 LINSERT key BEFORE|AFTER pivot value
在列表的元素前或者后插入元素
6 LLEN key
获取列表长度
7 LPOP key
移出并获取列表的第一个元素
8 LPUSH key value1 [value2]
将一个或多个值插入到列表头部
9 LPUSHX key value
将一个值插入到已存在的列表头部
10 LRANGE key start stop
获取列表指定范围内的元素
11 LREM key count value
移除列表元素
12 LSET key index value
通过索引设置列表元素的值
13 LTRIM key start stop
对一个列表进行修剪(trim),就是说,让列表只保留指定区间内的元素,不在指定区间之内的元素都将被删除。
14 RPOP key
移除并获取列表最后一个元素
15 RPOPLPUSH source destination
移除列表的最后一个元素,并将该元素添加到另一个列表并返回
16 RPUSH key value1 [value2]
在列表中添加一个或多个值
17 RPUSHX key value
为已存在的列表添加值

5).Redis对集合(Set)操作的命令

redis 127.0.0.1:6379> SADD xlosykey redis
(integer) 1
redis 127.0.0.1:6379> SADD xlosykey mongodb
(integer) 1
redis 127.0.0.1:6379> SADD xlosykey mysql
(integer) 1
redis 127.0.0.1:6379> SADD xlosykey  mysql
(integer) 0
redis 127.0.0.1:6379> SMEMBERS xlosykey 
1) "mysql"
2) "mongodb"
3) "redis"

1 SADD key member1 [member2]
向集合添加一个或多个成员
2 SCARD key
获取集合的成员数
3 SDIFF key1 [key2]
返回给定所有集合的差集
4 SDIFFSTORE destination key1 [key2]
返回给定所有集合的差集并存储在 destination 中
5 SINTER key1 [key2]
返回给定所有集合的交集
6 SINTERSTORE destination key1 [key2]
返回给定所有集合的交集并存储在 destination 中
7 SISMEMBER key member
判断 member 元素是否是集合 key 的成员
8 SMEMBERS key
返回集合中的所有成员
9 SMOVE source destination member
将 member 元素从 source 集合移动到 destination 集合
10 SPOP key
移除并返回集合中的一个随机元素
11 SRANDMEMBER key [count]
返回集合中一个或多个随机数
12 SREM key member1 [member2]
移除集合中一个或多个成员
13 SUNION key1 [key2]
返回所有给定集合的并集
14 SUNIONSTORE destination key1 [key2]
所有给定集合的并集存储在 destination 集合中
15 SSCAN key cursor [MATCH pattern] [COUNT count]
迭代集合中的元素

6).Redis对有序集合(sorted set)操作的命令

redis 127.0.0.1:6379> ZADD xlosykey 1 redis
(integer) 1
redis 127.0.0.1:6379> ZADD xlosykey 2 mongodb
(integer) 1
redis 127.0.0.1:6379> ZADD xlosykey 3 mysql
(integer) 1
redis 127.0.0.1:6379> ZADD xlosykey 3 mysql
(integer) 0
redis 127.0.0.1:6379> ZADD xlosykey 4 mysql
(integer) 0
redis 127.0.0.1:6379> ZRANGE xlosykey 0 10 WITHSCORES
1) "redis"
2) "1"
3) "mongodb"
4) "2"
5) "mysql"
6) "4"

1 ZADD key score1 member1 [score2 member2]
向有序集合添加一个或多个成员,或者更新已存在成员的分数
2 ZCARD key
获取有序集合的成员数
3 ZCOUNT key min max
计算在有序集合中指定区间分数的成员数
4 ZINCRBY key increment member
有序集合中对指定成员的分数加上增量 increment
5 ZINTERSTORE destination numkeys key [key …]
计算给定的一个或多个有序集的交集并将结果集存储在新的有序集合 key 中
6 ZLEXCOUNT key min max
在有序集合中计算指定字典区间内成员数量
7 ZRANGE key start stop [WITHSCORES]
通过索引区间返回有序集合成指定区间内的成员
8 ZRANGEBYLEX key min max [LIMIT offset count]
通过字典区间返回有序集合的成员
9 ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT]
通过分数返回有序集合指定区间内的成员
10 ZRANK key member
返回有序集合中指定成员的索引
11 ZREM key member [member …]
移除有序集合中的一个或多个成员
12 ZREMRANGEBYLEX key min max
移除有序集合中给定的字典区间的所有成员
13 ZREMRANGEBYRANK key start stop
移除有序集合中给定的排名区间的所有成员
14 ZREMRANGEBYSCORE key min max
移除有序集合中给定的分数区间的所有成员
15 ZREVRANGE key start stop [WITHSCORES]
返回有序集中指定区间内的成员,通过索引,分数从高到底
16 ZREVRANGEBYSCORE key max min [WITHSCORES]
返回有序集中指定分数区间内的成员,分数从高到低排序
17 ZREVRANK key member
返回有序集合中指定成员的排名,有序集成员按分数值递减(从大到小)排序
18 ZSCORE key member
返回有序集中,成员的分数值
19 ZUNIONSTORE destination numkeys key [key …]
计算给定的一个或多个有序集的并集,并存储在新的 key 中
20 ZSCAN key cursor [MATCH pattern] [COUNT count]
迭代有序集合中的元素(包括元素成员和元素分值)

七、Redis的发布与订阅
Redis 发布订阅(pub/sub)是一种消息通信模式:发送者(pub)发送消息,订阅者(sub)接收消息。
Redis 客户端可以订阅任意数量的频道。

redis 127.0.0.1:6379> SUBSCRIBE redisChat
Reading messages... (press Ctrl-C to quit)
1) "subscribe"
2) "redisChat"
3) (integer) 1

订阅一个通道名称为“redisChat”的通道消息,等待通道消息中

redis 127.0.0.1:6379> PUBLISH redisChat "Redis is a great caching technique"
(integer) 1

redis 127.0.0.1:6379> PUBLISH redisChat "Learn redis by xlosy.com"
(integer) 1

订阅者的客户端会显示如下消息

1) "message"
2) "redisChat"
3) "Redis is a great caching technique"
1) "message"
2) "redisChat"
3) "Learn redis by xlosy.com"

1 PSUBSCRIBE pattern [pattern …]
订阅一个或多个符合给定模式的频道。
2 PUBSUB subcommand [argument [argument …]]
查看订阅与发布系统状态。
3 PUBLISH channel message
将信息发送到指定的频道。
4 PUNSUBSCRIBE [pattern [pattern …]]
退订所有给定模式的频道。
5 SUBSCRIBE channel [channel …]
订阅给定的一个或多个频道的信息。
6 UNSUBSCRIBE [channel [channel …]]
指退订给定的频道。

七、Redis 事务
Redis 事务可以一次执行多个命令, 并且带有以下两个重要的保证:

批量操作在发送 EXEC 命令前被放入队列缓存。
收到 EXEC 命令后进入事务执行,事务中任意命令执行失败,其余的命令依然被执行。
在事务执行过程,其他客户端提交的命令请求不会插入到事务执行命令序列中。
一个事务从开始到执行会经历以下三个阶段:
开始事务。
命令入队。
执行事务。

redis 127.0.0.1:6379> MULTI
OK

redis 127.0.0.1:6379> SET book-name "Mastering C++ in 21 days"
QUEUED

redis 127.0.0.1:6379> GET book-name
QUEUED

redis 127.0.0.1:6379> SADD tag "C++" "Programming" "Mastering Series"
QUEUED

redis 127.0.0.1:6379> SMEMBERS tag
QUEUED

redis 127.0.0.1:6379> EXEC
1) OK
2) "Mastering C++ in 21 days"
3) (integer) 3
4) 1) "Mastering Series"
   2) "C++"
   3) "Programming"

单个 Redis 命令的执行是原子性的,但 Redis 没有在事务上增加任何维持原子性的机制,所以 Redis 事务的执行并不是原子性的。
事务可以理解为一个打包的批量执行脚本,但批量指令并非原子化的操作,中间某条指令的失败不会导致前面已做指令的回滚,也不会造成后续的指令不做。

1 DISCARD
取消事务,放弃执行事务块内的所有命令。
2 EXEC
执行所有事务块内的命令。
3 MULTI
标记一个事务块的开始。
4 UNWATCH
取消 WATCH 命令对所有 key 的监视。
5 WATCH key [key …]
监视一个(或多个) key ,如果在事务执行之前这个(或这些) key 被其他命令所改动,那么事务将被打断。

八、Redis 脚本
Redis 脚本使用 Lua 解释器来执行脚本。 Redis 2.6 版本通过内嵌支持 Lua 环境。执行脚本的常用命令为 EVAL。

redis 127.0.0.1:6379> EVAL "return {KEYS[1],KEYS[2],ARGV[1],ARGV[2]}" 2 key1 key2 first second
1) "key1"
2) "key2"
3) "first"
4) "second"

1 EVAL script numkeys key [key …] arg [arg …]
执行 Lua 脚本。
2 EVALSHA sha1 numkeys key [key …] arg [arg …]
执行 Lua 脚本。
3 SCRIPT EXISTS script [script …]
查看指定的脚本是否已经被保存在缓存当中。
4 SCRIPT FLUSH
从脚本缓存中移除所有脚本。
5 SCRIPT KILL
杀死当前正在运行的 Lua 脚本。
6 SCRIPT LOAD script
将脚本 script 添加到脚本缓存中,但并不立即执行这个脚本。

九、Redis 连接

redis 127.0.0.1:6379> AUTH "password"
OK
redis 127.0.0.1:6379> PING
PONG

1 AUTH password
验证密码是否正确
2 ECHO message
打印字符串
3 PING
查看服务是否运行
4 QUIT
关闭当前连接
5 SELECT index
切换到指定的数据库

十、Redis 服务器

redis 127.0.0.1:6379> INFO  //显示服务相关信息

1 BGREWRITEAOF
异步执行一个 AOF(AppendOnly File) 文件重写操作
2 BGSAVE
在后台异步保存当前数据库的数据到磁盘
3 CLIENT KILL [ip:port] [ID client-id]
关闭客户端连接
4 CLIENT LIST
获取连接到服务器的客户端连接列表
5 CLIENT GETNAME
获取连接的名称
6 CLIENT PAUSE timeout
在指定时间内终止运行来自客户端的命令
7 CLIENT SETNAME connection-name
设置当前连接的名称
8 CLUSTER SLOTS
获取集群节点的映射数组
9 COMMAND
获取 Redis 命令详情数组
10 COMMAND COUNT
获取 Redis 命令总数
11 COMMAND GETKEYS
获取给定命令的所有键
12 TIME
返回当前服务器时间
13 COMMAND INFO command-name [command-name …]
获取指定 Redis 命令描述的数组
14 CONFIG GET parameter
获取指定配置参数的值
15 CONFIG REWRITE
对启动 Redis 服务器时所指定的 redis.conf 配置文件进行改写
16 CONFIG SET parameter value
修改 redis 配置参数,无需重启
17 CONFIG RESETSTAT
重置 INFO 命令中的某些统计数据
18 DBSIZE
返回当前数据库的 key 的数量
19 DEBUG OBJECT key
获取 key 的调试信息
20 DEBUG SEGFAULT
让 Redis 服务崩溃
21 FLUSHALL
删除所有数据库的所有key
22 FLUSHDB
删除当前数据库的所有key
23 INFO [section]
获取 Redis 服务器的各种信息和统计数值
24 LASTSAVE
返回最近一次 Redis 成功将数据保存到磁盘上的时间,以 UNIX 时间戳格式表示
25 MONITOR
实时打印出 Redis 服务器接收到的命令,调试用
26 ROLE
返回主从实例所属的角色
27 SAVE
同步保存数据到硬盘
28 SHUTDOWN [NOSAVE] [SAVE]
异步保存数据到硬盘,并关闭服务器
29 SLAVEOF host port
将当前服务器转变为指定服务器的从属服务器(slave server)
30 SLOWLOG subcommand [argument]
管理 redis 的慢日志
31 SYNC
用于复制功能(replication)的内部命令

十一、java中使用redis

首先你需要下载驱动包 下载 jedis.jar,确保下载最新驱动包。
在你的 classpath 中包含该驱动包。

import redis.clients.jedis.Jedis;
 
public class RedisJava {
    public static void main(String[] args) {
        //连接本地的 Redis 服务
        Jedis jedis = new Jedis("localhost");
        System.out.println("连接成功");
        //查看服务是否运行
        System.out.println("服务正在运行: "+jedis.ping());
    }
}

操作字符串

import redis.clients.jedis.Jedis;
 
public class RedisStringJava {
    public static void main(String[] args) {
        //连接本地的 Redis 服务
        Jedis jedis = new Jedis("localhost");
        System.out.println("连接成功");
        //设置 redis 字符串数据
        jedis.set("xlosykey", "www.xlosy.com");
        // 获取存储的数据并输出
        System.out.println("redis 存储的字符串为: "+ jedis.get("runoobkey"));
    }
}

Redis Java List(列表) 实例

import java.util.List;
import redis.clients.jedis.Jedis;
 
public class RedisListJava {
    public static void main(String[] args) {
        //连接本地的 Redis 服务
        Jedis jedis = new Jedis("localhost");
        System.out.println("连接成功");
        //存储数据到列表中
        jedis.lpush("site-list", "xlosy");
        jedis.lpush("site-list", "Google");
        jedis.lpush("site-list", "Taobao");
        // 获取存储的数据并输出
        List<String> list = jedis.lrange("site-list", 0 ,2);
        for(int i=0; i<list.size(); i++) {
            System.out.println("列表项为: "+list.get(i));
        }
    }
}

Redis Java Keys 实例

import java.util.Set;
import redis.clients.jedis.Jedis;
 
public class RedisKeyJava {
    public static void main(String[] args) {
        //连接本地的 Redis 服务
        Jedis jedis = new Jedis("localhost");
        System.out.println("连接成功");
 
        // 获取数据并输出
        Set<String> keys = jedis.keys("*"); 
        Iterator<String> it=keys.iterator() ;   
        while(it.hasNext()){   
            String key = it.next();   
            System.out.println(key);   
        }
    }
}

Redis开发建议
最后附上Redis的一些开发规范和建议:

1.冷热数据分离,不要将所有数据全部都放到Redis中
虽然Redis支持持久化,但是Redis的数据存储全部都是在内存中的,成本昂贵。建议根据业务只将高频热数据存储到Redis中【QPS大于5000】,对于低频冷数据可以使用MySQL/ElasticSearch/MongoDB等基于磁盘的存储方式,不仅节省内存成本,而且数据量小在操作时速度更快、效率更高!

2.不同的业务数据要分开存储
不要将不相关的业务数据都放到一个Redis实例中,建议新业务申请新的单独实例。因为Redis为单线程处理,独立存储会减少不同业务相互操作的影响,提高请求响应速度;同时也避免单个实例内存数据量膨胀过大,在出现异常情况时可以更快恢复服务! 在实际的使用过程中,redis最大的瓶颈一般是CPU,由于它是单线程作业所以很容易跑满一个逻辑CPU,可以使用redis代理或者是分布式方案来提升redis的CPU使用率。

3.存储的Key一定要设置超时时间
如果应用将Redis定位为缓存Cache使用,对于存放的Key一定要设置超时时间!因为若不设置,这些Key会一直占用内存不释放,造成极大的浪费,而且随着时间的推移会导致内存占用越来越大,直到达到服务器内存上限!另外Key的超时长短要根据业务综合评估,而不是越长越好!

4. For large text data that must be stored, it must be compressed and stored
When writing large text [more than 500 bytes] to Redis, it must be compressed and stored! Storing large text data into Redis not only takes up a lot of memory, but also easily fills up the network card when the traffic is high, causing all services on the entire server to be unavailable and triggering an avalanche effect, causing All systems are paralyzed!

5. Online Redis prohibits the use of Keys regular matching operations
Redis is a single-threaded process. When there are a large number of online KEYs, the operation efficiency is extremely low [The time complexity is O( N)】, once this command is executed, it will seriously block the normal requests of other commands online, and in high QPS situations, it will directly cause the Redis service to crash! If you have similar needs, please use the scan command instead!

6. Reliable message queue service
Redis List is often used for message queue services. Assume that the consumer program crashes immediately after retrieving the message from the queue. However, since the message has been retrieved and has not been processed normally, it can be considered that the message has been lost, which may result in loss of business data or inconsistent business status. occur.

In order to avoid this situation, Redis provides the RPOPLPUSH command. The consumer program will atomically remove the message from the main message queue and insert it into the backup queue until the consumer program completes the normal processing logic. Then delete the message from the backup queue. At the same time, a daemon process can also be provided. When a message in the backup queue is found to have expired, it can be put back into the main message queue so that other consumer programs can continue processing.

7. Be cautious in fully operating collection structures such as Hash and Set.
When using the HASH structure to store object attributes, there are only a limited dozen fields at first, and HGETALL is often used to obtain all members. , the efficiency is also very high, but as the business develops, the fields will be expanded to hundreds or even hundreds. At this time, using HGETALL will cause problems such as a sharp drop in efficiency and frequent network card filling [time complexity O(N) 】, at this time it is recommended to split it into multiple Hash structures according to the business; or if most of the operations are to obtain all attributes, all attributes can be serialized into a STRING type storage! The same is true when using SMEMBERS to operate the SET structure type!

8. Reasonably use different data structure types according to business scenarios
Currently Redis supports many database structure types: String, Hash, List (List), collection (Set), ordered set (Sorted Set), Bitmap, HyperLogLog and geospatial index (geospatial), etc. You need to choose the appropriate type according to the business scenario.

Common ones include: String can be used as ordinary K-V, counting class; Hash can be used as objects such as commodities, brokers, etc., containing information with more attributes; List can be used as message queue, fans/follows Lists, etc.; Set can be used for recommendations; Sorted Set can be used for rankings, etc.!

9. Naming convention
Although Redis supports multiple databases (default 32, more can be configured), except for the default library No. 0, all others are required Available via an additional request. So it might be wiser to use prefix as namespace.

In addition, when using prefixes as namespaces to separate different keys, it is best to use global configuration in the program. The practice of writing prefixes directly in the code should be strictly avoided. This is too maintainable. Worse.

For example: system name: business name: business data: others

But be careful, the name of the key should not be too long, try to be clear and easy to understand, you need to measure it yourself

10. It is forbidden to use the monitor command online
It is forbidden to use the monitor command in the production environment. Under high concurrency conditions, the monitor command may cause memory explosion and affect the performance of Redis.

11. Prohibiting large strings
The core cluster disables 1MB string large keys (although redis supports 512MB strings). If a 1MB key is written repeatedly 10 times per second, it will cause network IO to be written. Up to 10MB;

12. redis capacity
The memory size of a single instance is not recommended to be too large, and it is recommended to be within 10~20GB.

It is recommended that the number of keys contained in a redis instance be controlled within 1kw. If the number of keys in a single instance is too large, expired keys may not be recycled in a timely manner.

13 Reliability
It is necessary to monitor the health of redis regularly: use various redis health monitoring tools. If this is not possible, redis info information can be returned regularly.

Try to use the connection pool for client connections (long links and automatic reconnection)

The above is the detailed content of A brief introduction to the use of Redis tutorial. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete