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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

The Reactive Manifesto

3 点作者 wx196超过 11 年前

1 comment

ggchappell超过 11 年前
[NOTE: There&#x27;s a bit of negativity here. But I&#x27;m not trying to be anyone&#x27;s enemy. It is hoped that this will be taken (esp. by the author, if he&#x27;s around) as the respectful critique it is intended to be.]<p>I&#x27;m wondering about this. It&#x27;s a heck of a lot of text to get a across a couple of simple ideas.<p>It feels like the author has been stuck in a little a corner of the programming world for some time, and he thinks that everyone has been doing things the way he has. So if he needs to learn something new, then everyone else must need it also.<p>People have been writing interactive, event&#x2F;message-driven programs for the mass market ever since the Macintosh came out ~30 years ago. Sometimes interfaces between internal components have been written in that same style; sometimes they haven&#x27;t. Doing a whole system that way is a nice idea, but hardly a revolutionary one.<p>And scalability? One can&#x27;t really design a scalable architecture until it is clear how a system will need to scale. Will it be huge number of app instances talking to a central data store? Will it be a huge amount of data managed separately by each app instance? Will it be huge numbers of P2P connections between instances? Etc. And information like that is sometimes unavailable until a system has been in existence for a while.<p>And let&#x27;s not forget Knuth and premature optimization.<p>OTOH, the resilience ideas are definitely worthwhile. Reliability standards for computer systems are rising like crazy. Architectural ideas for improving reliability, robustness, etc., need to be thought about more. So good for the author on this one.<p>Now, put it all together and clear out the fluff, and I get this: A good way to design computer systems is to use modular components that talk to each other using non-blocking interfaces, in such a way that component failure does not bring down the system. That&#x27;s a fine thought, although not a terribly revolutionary one. And it hardly needs an 18,000-word essay with 4 figures to get it across.