Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is IntelliJ IDEA Ultimate slower than the Community edition?

The ultimate has many more features, so I imagine it loads slower, consumes more memory and is generally less responsive. Actually I don't care about the load time all that much, but memory and responsiveness (which are related) are of more importance.

Did you notice any difference between these editions?

like image 458
Przemek Avatar asked Jan 23 '11 02:01

Przemek


People also ask

Is IntelliJ Community Edition good enough?

The community edition is fine for basic Java development. It is suitable for desktop projects, and includes the visual GUI Builder, and also supports Maven and Ant build tools, JUnit and TestNG testing, Java and Android development, and rich editor support for Java and XML.

Can I upgrade from IntelliJ community to ultimate?

IntelliJ IDEA Community Edition and IntelliJ IDEA Edu are free and can be used without any license. You cannot upgrade to IntelliJ IDEA Ultimate: download and install it separately as described in Install IntelliJ IDEA.

How much RAM does IntelliJ consume?

Intellij Idea consumes all 8GB memory allocated for it after upgrading to 2021.1. Intellij Idea consumes all 8GB memory allocated for it after upgrading to 2021.1.


1 Answers

If you are working on the same project and using the same features, you should not notice any differences.

However, if your project uses several languages (like Ruby, Python, Groovy, Scala), load time will be longer since IDEA will have to load plug-ins for these languages.

Also, more features used in the project, means that IDEA will need more memory. If you don't hit your hardware limit and have a descent rig, you'll not notice it at all. If you are short on memory, IDEA may become slower because of the frequent garbage collections and operating system swapping.

So, generally it would require more memory since you are going to use more features, but if it doesn't swap and you have enough free RAM, you will not have performance problems. Also note that you can disable all the unused plug-ins to save resources.

like image 171
CrazyCoder Avatar answered Sep 27 '22 22:09

CrazyCoder