Y
Hacker News
new
|
ask
|
show
|
jobs
by
_pastel
1568 days ago
These numbers focus on reads. How does writing speed to cache, main memory, or disk compare? Anyone have some ballparks to help me build intuition?
1 comments
favorited
1568 days ago
Writes are much slower than reads, but modern CPUs have a write-buffer for each core so they don't need to wait for the write to propagate back down the caches and into main memory before continuing execution.
link