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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Hardware Acceleration of Key-Value Stores [pdf]

37 点作者 StylifyYourBlog超过 10 年前

4 条评论

TD-Linux超过 10 年前
Their system works well on a RISC-V, which is a deeply pipelined but in-order architecture running at only 50MHz, with very fast memory relative to its clock speed. I&#x27;d like to see results compared to a more reasonable CPU implementation. For example they could have used a Xilinx Zynq, which includes hard Cortex A9 cores, which are out-of-order and superscalar. They also run at a much higher frequency relative to the memory speed.<p>I think this paper vastly underestimates memory constraints of higher performance systems.
评论 #8802479 未加载
toomim超过 10 年前
At first, I was impressed they reduced latency by 10x:<p><pre><code> Our initial evaluation with a realistic workload shows a 10x improvement in latency for 40% of requests without adding significant overhead to the remaining requests. </code></pre> And then I re-read this claim, did a little math, and realized that they only reduced it by 36%.<p>&quot;10x for 40% of requests&quot; is a skeezy way of saying 36%.
评论 #8802926 未加载
评论 #8801825 未加载
评论 #8801830 未加载
pradn超过 10 年前
Nothing revolutionary, but someone had to do it. (Of course, you would take something expensive in software and implement the logic in software. Of course you can get by implementing only the most common requests: GETs to a small subset of keys.)<p>I don&#x27;t intend to criticize this paper in particular, but, generally, I don&#x27;t see small performance improvements in such software to be very useful for society. Academia just becomes a research arm of corporations that might even be a net negative for society: eroding privacy rights (Facebook et al) or introducing volatility into stock markets (HFT could use this paper&#x27;s insight just as fruitfully.)
评论 #8801841 未加载
评论 #8801894 未加载
评论 #8801831 未加载
moru0011超过 10 年前
Main source of latency will be network. The main problem are synchronous GET requests as then performance == latency. Better go async instead of reducing latency with hardware accel.
评论 #8802263 未加载