I am using idea 9.0.3 which is the latest release. When I write some scala source code in Idea, it takes several seconds to compile and run. This shouldn't be that slow, Is this normal?
|
closed as not constructive by casperOne♦ Jul 20 '12 at 12:28
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There are two aspects to the (lack of) speed for the Scala compiler.
|
|||||||||
|
|
Are you comparing the compilation of Scala with IDEA to:
If it's the latter, then you should be aware that Scala compilation takes at least an order of magnitude longer than Java to compile. The reasons for this are as follows:
If it's either of the former, then you may be right and your IDEA configuration may not be optimal. Have to tried the |
|||||||||||
|
|
The best way to do Scala is with IDEA and SBT. Set up an elementary SBT project (which it'll do for you, if you like) and run it in automatic compile mode (command You can also use the SBT plug-in for IDEA and attach an SBT action to each of your Run Configurations. The SBT plug-in also gives you an interactive SBT console within IDEA. Either way (SBT running externally or SBT plug-in), SBT stays running and thus all the classes used in building your project get "warmed up" and JIT-ed and the start-up overhead is eliminated. Additionally, SBT compiles only source files that need it. It is by far the most efficient way to build Scala programs. Randall Schulz |
|||
|
|
|
Idea can be slower in a small project but it can compile huge java and scala mixed project in reasonable time while Eclipse just fails at all. You might also want to try fsc with idea: http://devnet.jetbrains.net/thread/286420 |
|||
|
|
|
Yes, this is normal for IDEA. Eclispe is faster. I recommend the latest nightly build of the eclipse plugin for eclipse 3.6 |
|||
|