1

I have a computer with Intel I7 2600 3.4Ghz processor, 32GB RAM, Windows 7 professional x64, JVM updated.

In Zend Studio when run Source -> Format Code over many files, Zend crash with warning: Java Heap Size.

I read about setting values in ZendStudio.ini, my relevant settings: -Xms1089M -Xmx1089M -XX:MaxPermSize=256m

But I can't increment these limit.

Any alternative for fix this problem?

Jose Nobile
  • 3,243
  • 4
  • 23
  • 30

1 Answers1

0

Why can't you increment? 32 bit JVM?

UPDATE: Did some research. While it is possible to edit Zend Studio's JVM usage,

This support forum post states 32 bit JVM is needed (I guess they use 32 bit native DLLS.

A 32 bit JVM is limited to about 1.5 GB addressable space. You might be able to tweak things further, but it's gonna be a stretch.

Therefore your only solutions are mostly out of your hands

  • Zend Studio updates to 64 bit support
  • Zend Studio adjusts memory usage
  • You figure out a way not to use as much memory yourself.
MJB
  • 9,352
  • 6
  • 34
  • 49
  • Zend Studio in 64 bits is not in my hands. – Jose Nobile Jul 25 '12 at 07:55
  • I did adjust the memory variables (as mentioned, in ZendStudio.ini) to highest possible (if higher it not open) – Jose Nobile Jul 25 '12 at 07:58
  • As I stated, with excrutiating pain you can make it allocate more. Do a google for 32 bit windows jvm 2gb limit and I'm sure you can get a bit more. Otherwise, you have the options I specified. – MJB Jul 26 '12 at 00:48