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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Memory Trick Could Speed Up the Web

3 点作者 FSecurePal超过 13 年前

2 条评论

petercooper超过 13 年前
<i>Ousterhout's proposed system is based on dynamic random access memory (DRAM). [..] In a data center, fetching bits from DRAM and sending them over the center's internal network should be 100 to 1,000 times faster than getting it from a disk.</i><p>So the "trick" is "caching data in memory" but with <i>more</i> memory and spread across multiple machines. This is already the bread and butter for many infrastructure developers and sysadmins.<p>It'll be more interesting to see what memristor technology brings. The first commercially available solutions are due in the next couple of years and we'll most likely have cost effective, non-volatile DRAM-speed memory by 2020.
bradleyland超过 13 年前
See also:<p><pre><code> mkdir /media/ramdisk chmod 777 /media/ramdisk mount -t tmpfs -o size=1024M tmpfs /media/ramdisk/ </code></pre> Note: Do not copy/paste this in to your shell unless you know what you're doing. This will immediately seize 1 GB of RAM that you may or may not have free. Any data you put there will go up in smoke if your system loses power or is forced to reboot without first copying the data to persistent storage.