redis-cli info|grep conn
结果:
connected_clients:1 当前正在使用的连接
total_connections_received:160 运行以来新创建连接总个数
rejected_connections:0 redis连接个数达到maxclients限制,拒绝新连接的个数
connected_slaves:0 slave的数量
len(pool._in_use_connections) 正在使用的连接数
len(pool._available_connections) 连接池可用的连接数
pool.max_connections 连接池的最大连接数