我在运行Web服务
之前在main.py中声明了connection_pool CONNECTION_POOL = tornadoredis.ConnectionPool(
max_connections=10, wait_for_available=True)
client = tornadoredis.Client(
connection_pool=CONNECTION_POOL
)
client.connect()
client.subscribe("user", lambda msg: client.listen(WSHandler.on_messages_published))
当我进行压力测试时,我发现真正的连接数超过200,但我已经设置了max_connections=10
。
所以我不知道为什么会这样。