Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
高トラフィック用(800 要求/秒)の Web アプリケーションを Python で作成したいのですが、どの Web サーバーとモジュールが最適かわかりません。
私たちは実際にはApache2 + mod_wsgiが良い選択肢だと考えていますが、Apache2 + FastCGI または Nginx + mod_wsgi または FastCGI の方が良いかもしれません。
何か案は?
私はおそらく - Apache2(mod_wsgi) + Nginx(Proxy) を使います。Nginx が静的コンテンツを提供し、動的コンテンツ要求を Apache2 サーバーに送信する場所。これにより、アプリケーションのパフォーマンスが向上します。