Reputation: 145
When I try to debug or run my flex application it shows "Out of memory" dialog. I use IDEA 11.1 Ultimate and Windows 7 64x.
What I tried:
It used to work fine before. I have no idea what could have changed.
I noticed that compilation works fine - I get a proper compiled swf file of my project that can be run in flashplayer. But right at the moment when IDEA is supposed to run the newly compiled swf it eats up all the memory.
What can be done about it? What else should I try?
I really don't understand why reinstalling IDEA didn't solve my problem. May be I didn't wipe out all settings?
Upvotes: 0
Views: 454
Reputation: 41779
Did you open more IDEA windows? Like opening another project into new window. In such case closing the other window will not release memory. The only thing that helps me is to restart the whole IDEA application.
Upvotes: 0
Reputation: 402543
Try File
| Invalidate Caches
or even run with all the defaults after renaming IDEA folders.
There were also some related fixes in IDEA 11.1.3 version, give it a try.
If it doesn't help, upload hprof
memory dump to JetBrains FTP server and contact support for help, see http://devnet.jetbrains.net/docs/DOC-192 (Memory Snapshot section at the bottom) for details. You need to run IDEA with -XX:+HeapDumpOnOutOfMemoryError
option.
Upvotes: 2