Linked by Thom Holwerda on Tue 12th Aug 2008 00:00 UTC
There's a new hype going on in the world of computing. I used to call them 'tiny laptops', but somewhere along the way, Intel's marketing got at me and now I call them netbooks. Every self-respecting manufacturer has a netbook product line, or is about to introduce one (Apple?), so I figured I would take a look at what all the fuss is about: I bought a netbook.
Permalink for comment 326621
To read all comments associated with this story, please click here.
by pxa270 on Tue 12th Aug 2008 20:45 UTC
in reply to "Sweet!"
Member since:
2006-01-08
You're confusing reads and writes. For reading lots of small files, flash memory are much faster than HDD, as the seek times (which are dominant when reading small non-contingent blocks) of flash is at least an order of magnitude better.
However, unlike HDD where reading and writing are roughly the same speed, writing on flash is typically much slower than reading. On NAND flash, you can't just flip bits at will. Data is written in pages which are many (sometimes even hundreds, depending on the total size) of kilobytes. Anytime a single bit in a page needs to change from 0 to 1, all other bits in the page needs to be erased/reset to 1 as well. This is especially bad (relatively speaking) for very small writes.
Member since:
2006-01-08
You're confusing reads and writes. For reading lots of small files, flash memory are much faster than HDD, as the seek times (which are dominant when reading small non-contingent blocks) of flash is at least an order of magnitude better.
However, unlike HDD where reading and writing are roughly the same speed, writing on flash is typically much slower than reading. On NAND flash, you can't just flip bits at will. Data is written in pages which are many (sometimes even hundreds, depending on the total size) of kilobytes. Anytime a single bit in a page needs to change from 0 to 1, all other bits in the page needs to be erased/reset to 1 as well. This is especially bad (relatively speaking) for very small writes.