1. 程式人生 > >解決伺服器併發量的問題

解決伺服器併發量的問題

http://www.cnblogs.com/gdkl/p/6807667.html

https://lenciel.com/2013/08/why-you-need-something-like-gunicorn/

nginx->反向代理 負載均衡(叢集)

快取伺服器 :Redis/Memcached

gunicorn/uwsgi gunicorn 用python檔案配置,配置簡單

http://gunicorn.readthedocs.io/en/latest/getstart.html#django

http://docs.gunicorn.org/en/latest/configure.html

gunicorn只需要啟用4–12個workers,就足以每秒鐘處理幾百甚至上千個請求了


worker數量是:(2 x $num_cores) + 1,這個公式很簡單,它是基於給定的核心處理器數量,在其他worker處理請求時,每個worker將從socket那進行讀寫操作