📜  Redis-客户端连接

📅  最后修改于: 2020-11-26 08:19:57             🧑  作者: Mango


Redis在已配置的侦听TCP端口和Unix套接字(如果已启用)上接受客户端的连接。接受新的客户端连接后,将执行以下操作-

  • 由于Redis使用多路复用和非阻塞I / O,因此客户端套接字处于非阻塞状态。

  • 设置TCP_NODELAY选项是为了确保我们的连接没有延迟。

  • 创建一个可读文件事件,以便Redis能够在套接字上读取新数据后立即收集客户端查询。

最大客户数

在Redis配置(redis.conf)中,有一个名为maxclients的属性,它描述了可以连接到Redis的最大客户端数量。

以下是命令的基本语法。

config get maxclients  

1) "maxclients" 
2) "10000" 

默认情况下,此属性设置为10000(取决于OS的最大文件描述符数限制),尽管可以更改此属性。

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

redis-server --maxclients 100000 

客户端命令

Sr.No 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.