|
|
|
|
|
by motorest
252 days ago
|
|
> I'm interested in... why? What are you building that loading data from disk is so lopsided vs CPu load from compiling (...) This has been the basic pattern for ages, particularly with large C++ projects. C++ builds, specially with the introduction of multi-CPU and multi-core systems, turns builds into IO-bound workflows, specially during linking. Creating RAM disks to speed up builds is one of the most basic and low effort strategies to improve build times, and I think it was the main driver for a few commercial RAM drive apps. |
|