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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

12 reasons why your app won't scale

25 点作者 yannski将近 9 年前

1 comment

theowaayehsvd将近 9 年前
I agree with most of their points, but their assertion that &quot;writing files to disk is one of the slowest operations you can do&quot; is laughably wrong. File IO is optimized to the extreme and cached on many layers from the IO library all the way down to the hardware.<p>I assume the writer is only familiar with synchronous disk IO which is ironic considering the mention of asynchronous programming.<p>File IO is one of the fastest operations if done right and some popular databases even use the OS cache instead of their own, MS SQL server is the only database I&#x27;m aware that doesn&#x27;t.<p>I seriously question the authors knowledge of what it takes to &quot;scale&quot; if they think file IO is going to slow you down