Redis Client ConnectionRedis can accept different type of clients' connections on the configured listening TCP port and on the Unix socket, if enabled. When a new client connection is accepted, it performs the following operations:
Maximum number of ClientsIn Redis config (redis.conf), there is a property called maxclients, which specifies that how many number of clients can be connected to Redis. Following is the basic syntax of command. The maximum number of clients depends upon the maximum number of file descriptors limit of OS. Its default value is 10000, although you can change this property. ExampleLet's take an example to set the maximum number of clients to 100000, while starting the server. Client Commands
Next TopicRedis Pipelining |