📅  最后修改于: 2020-12-02 01:22:16             🧑  作者: Mango
Redis可以在已配置的侦听TCP端口和Unix套接字(如果已启用)上接受不同类型的客户端连接。
接受新的客户端连接后,它将执行以下操作:
在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. |