5 ms·
Curious what kind of optimizations you did for SSDs.
by nilsimsa 12y ago
Curious what kind of optimizations you did for SSDs.
- mglukhovsky 12y agoHere's a few links (from previous HN threads and blog posts) that dive into some of the optimizations we made around SSDs: * https://news.ycombinator.com/item?id=4795443 https://news.ycombinator.com/item?id=4795443 * http://www.rethinkdb.com/blog/on-trim-ncq-and-write-amplification/ http://www.rethinkdb.com/blog/on-trim-ncq-and-write-amplific...
- SamReidHughes 12y agoThe trick involves writing sectors (of size 4K, say, and it can depend on the SSD model) sequentially in aligned blocks (of size 1M, say, but it can depend on the SSD model) so that the SSD firmware that can erase one physical block at a time can handle it efficiently. Especially in 2010.
- bayareaguy 12y agoIf you are interested in SSD optimizations you may want to read this research from Microsoft: The Bw-Tree: A B-tree for New Hardware[1] 1 - http://research.microsoft.com/apps/pubs/default.aspx?id=178758 http://research.microsoft.com/apps/pubs/default.aspx?id=1787...