Dave
Dave

Reputation: 596

Flex 3 Highly productive development

What are the best approaches to keep a highly productive development environment in Flex. I have problems with Java Heap space. But I suspect my project is so huge that even changing the settings is not helping. I would like to know if using external Libraries can help build time?

Upvotes: 0

Views: 70

Answers (1)

drevans
drevans

Reputation: 58

We were using FlashBuilder for years. Our enterprise Flex project was MASSIVE and we reached a critical mass point where we were getting Java Heap Space errors after just 2 compiles.

We tried loads of different java memory settings but it just was not at all stable. We suspected there was a memory leak in the IDE.

We moved over to the 64 Bit version IntelliJ IDEA a couple of years ago and have never looked back. It doesn't improve build times but it is massively more stable and provides loads of extra refactoring tools too.

Splitting into separate libraries will help but you can get into lots of dependency issues which may or may not be resolvable.

Upvotes: 1

Related Questions