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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: how to estimate users per server

2 点作者 Sean_Hayes超过 14 年前
I know this is highly dependent on a lot of factors, but is there any rough estimate for how many servers you need for x amount of users? I'm trying to estimate my future costs.<p>I'm using an Nginx front end server, Apache with mod_wsgi for serving my Django app, and PostgreSQL. It's all hosted on Rackspace Cloud using the latest Ubuntu.

1 comment

swombat超过 14 年前
In order to get a useful answer, you're going to have to provide a better idea of what kind of app you're talking about.<p>To use a couple of extreme examples, if your app provides key-cracking services, and each user wants to crack 1 key per day, and each key takes about a server-day to crack, you'll need (duh) at least 1 server per user.<p>On the other hand, if your app is basically a blog, a single (beefy) server should be able to quite easily serve millions of readers a month with the right caching in place.