문제

Good post here says speed better with SSD drive for Eclipse work.

But my slow part is mostly for maven builds. I have project with 1600+ classes. It take 2-3 min for a clean build with maven. I wonder if SSD drive will make it faster? Because SSD drive is big improvement on reads, but smaller improvement on writes as I understand.

I wonder if anyone has experimented with this?

도움이 되었습니까?

해결책

SSD write speed is slower than read speed but you don't have dsk access latency to pay, so will nearly always be faster than HDD, especially for Maven builds which spit out lots of small files (ie very random access)

Read this reasonable summary of the SSD vs HDD performance differences but I am confident that for every Maven build you will find it is access latency and not write throughput that affects your build speed.

TL;DR go for the SSD

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top