📜  Redis客户端连接

📅  最后修改于: 2020-12-02 01:22:16             🧑  作者: Mango

Redis客户端连接

Redis可以在已配置的侦听TCP端口和Unix套接字(如果已启用)上接受不同类型的客户端连接。

接受新的客户端连接后,它将执行以下操作:

  • 由于Redis使用多路复用和非阻塞I / O,因此客户端套接字处于非阻塞状态。
  • 设置TCP_NODELAY选项是为了确保我们的连接没有延迟。
  • 将创建一个可读文件事件,以便Redis能够在套接字上读取新数据后立即收集客户端查询。

最大客户数

在Redis配置(redis.conf)中,有一个名为maxclients的属性,该属性指定可以连接到Redis的客户端数量。

以下是命令的基本语法。

Config get maxclients
"maxclients"
"4064"

客户端的最大数量取决于操作系统的文件描述符的最大数量限制。尽管可以更改此属性,但其默认值为10000。

让我们以一个示例为例,在启动服务器时将最大客户端数设置为100000。

redis-server --maxclients 100000

客户端命令

Index Command Description
1 CLIENT LIST Returns the list of clients connected to Redis server
2 CLIENT SETNAME Assigns a name to the current connection
3 CLIENT GETNAME Returns the name of the current connection as set by CLIENT SETNAME
4 CLIENT PAUSE This is a connections control command able to suspend all the Redis clients for the specified amount of time (in milliseconds)
5 CLIENT KILL This command closes a given client connection.