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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Software optimization resources

61 点作者 antiuniverse超过 10 年前

3 条评论

quonn超过 10 年前
From the first guide (talking about Java and C#):<p>&quot;The time it takes to load the framework and compile the program are often much more than the time it takes to execute the program, and the runtime framework may use more resources than the program itself when running. Programs using such a framework sometimes have unacceptably long response times for simple tasks like pressing a button or moving the mouse.&quot;<p>When efficiency is important, the startup time of the VM hardly matters. Even if it would, the issue is not loading the Framework (class library) but JIT compilation. And, no, simple tasks like clicking a button will certainly not cause any observable delay due to the language.
评论 #8874793 未加载
评论 #8876416 未加载
stuntprogrammer超过 10 年前
These are invaluable references -- I hope we have many people here familiar with them, or new readers appreciating them.<p>It&#x27;s a shame that nothing quite so comprehensive exists for IO, as network and storage accesses, patterns and quirks are often more of a bottleneck than CPU, for many applications.
toolslive超过 10 年前
These are last resort measures. Things you can do when all other resources (doing less, better algo, better datastructure) have been depleted.