TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Can you recommend a tried and tested Python web server

8 点作者 rudenoise大约 15 年前
I'm currently looking at options for building a high traffic, content (text and images) based site, nothing especially innovative. Is Apache and mod_python as stable and scalable as Apache and PHP?

4 条评论

sqrt17大约 15 年前
nah. Use Apache and mod_wsgi. (mod_wsgi runs the Python app in a separate process, which means that those Apache processes that just serve images will not be weighed down by a Python interpreter).
mattdennewitz大约 15 年前
we're using apache+modwsgi to serve django, and tornado (by itself) behind nginx. both have been excellent. gunicorn looks to have a bright future, but i haven't played with it.
yourabi大约 15 年前
take a look at a combination of nginx and unicorn or uWsgi.<p>Avoid mod_python.
madprogrammer大约 15 年前
tornado