uWSGI和Postgresql连接池

问题描述 投票:0回答:1

我一直在寻找答案,但似乎找不到。

我有一个运行2个处理器的uWSGI应用程序

进程= 2

而且在我的应用程序中,我有这个

postgreSQL_pool = psycopg2.pool.SimpleConnectionPool(1, 4,
                                                     user=db_username,
                                                     password=db_password,
                                                     host=db_host,
                                                     port=db_port,
                                                     database=db_name)

所以,这意味着我的应用运行时,我的Web应用有2个“处理器”,池中有8个(最大)连接(每个uWSGI进程有4个池线程)?

我对uWSGI如何进行线程处理感到非常困惑。

谢谢。

postgresql connection-pooling uwsgi
1个回答
1
投票

您有两个连接池,每个连接池具有4个连接。

© www.soinside.com 2019 - 2024. All rights reserved.