Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ constantly indexing project

I'm really impressed with the startup time of IntelliJ which is really fast, however, every time I open it when it has started its always doing this indexing which causes everything to slow down, even if previously I have gracefully closed IntelliJ, the next start it will index again, why is that?

like image 575
quarks Avatar asked Oct 04 '22 02:10

quarks


1 Answers

IntelliJ may not be the only application using your project working directory.

If you use version control like git, SVN, or hg, or other tools such as code generators that operate on the project, then they will likely not know about IntelliJ(with or without version control-ignored IntelliJ data), and will simply write their changes.

For that reason, the IDE reindexes completion and outline data to be consistent with the code,

like image 86
nanofarad Avatar answered Oct 13 '22 12:10

nanofarad