Python 获取服务器的CPU个数详解编程语言

在使用gunicorn时,需要设置workers,

例如:

gunicorn –workers=3 app:app -b 0.0.0.0:9000

其中,worker的数量并不是越多越好,推荐值是CPU的个数x2+1,

CPU个数使用如下的方式获取:

python -c 'import multiprocessing; print multiprocessing.cpu_count()' 
 
//输出:1  ,即1核

虚拟机只有1个CPU,可以启动3个worker(1*2+1)

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/18116.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论