python redis连接数暴增问题

查看redis连接数

终端

redis-cli info|grep conn

结果:

connected_clients:1    当前正在使用的连接
total_connections_received:160   运行以来新创建连接总个数
rejected_connections:0	redis连接个数达到maxclients限制,拒绝新连接的个数
connected_slaves:0      slave的数量

python

len(pool._in_use_connections) 	正在使用的连接数
len(pool._available_connections)  	连接池可用的连接数
pool.max_connections    连接池的最大连接数

python 脚本导致连接数暴增原因

  1. 没有设置最大连接数
  2. 使用会轮询的方法, 如:hgetall()

你可能感兴趣的:(python)