Will SSD drive make maven builds faster?

好久不见. 提交于 2019-12-22 09:19:47

问题


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?


回答1:


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



来源:https://stackoverflow.com/questions/17091425/will-ssd-drive-make-maven-builds-faster

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!