Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top