我将与cherrypy一起设置Apache。从cherrypy文档:
if you have a simple website that doesn't have a really high traffic website
(say, less than 50 hits/second) [...], then running CherryPy exposed is fine.
Otherwise, running it behind Apache is probably the right option for you.
Cherrypy 独立将创建一个线程池并为请求提供服务。当我在 Apache 后面使用它时,Apache 增加了一些可以处理更大负载的魔力。
我的问题是:apache 到底在那里做什么?它自己管理线程池吗?它会创建更多线程吗?它在工作安排方面做得更好吗?它是否为每个 Apache 线程生成一个单独的cherrypy 实例?
我的问题不是Apache 通常做什么,我知道 :) 我想知道哪些cherrypy“职责”被转移到了 Apache,所以这个串联性能更好
有关的: