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.
我正在尝试在生产服务器上设置Mediacore(这是一个 Pylons 应用程序)。文档建议将 apache mod_fastcgi 或 mod_wsgi 作为网络服务器,但我尽量避免使用 apache,因为它是 RAM 贩子。另一方面,当我将它与 paste 一起使用时,mediacore 工作得很好,所以我想知道忽略 apache 并将 paste 用作我的生产 Web 服务器的优点/缺点是什么?
随着负载的增加,您可能会达到 CPU 或 DB 限制。典型的答案是使用多个并行后端。然后一个 nginx 或 lighttpd 或任何轻型 HTTP 服务器将派上用场,并允许您将负载分配到多个粘贴服务器并廉价地提供静态文件。
在那之前,您可能可以安全地运行 paste ,特别是如果您有多余的 CPU 可以浪费在提供静态文件上。