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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you make sure your website can scale?

1 点作者 sharmanaetor将近 9 年前
How do you test that your website can handle a certain load? Currently the website I handle sees around 120,000 active users a day. Half the site is marketing pages (mostly static HTML) and everything after login is dynamically generated.

1 comment

sharemywin将近 9 年前
for static stuff you can offload to cdn. where is session being stored? if it's on the web server you need to store it on the client or the database. then you can add more webservers. to test scaling at different numbers of users you need to profile your users work and then script it with a something like loadrunner against a test server.