Changes between Version 6 and Version 7 of Doc/compiler/problems
- Timestamp:
- Mar 7, 2007, 2:27:47 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Doc/compiler/problems
v6 v7 7 7 === Java Heap Space === 8 8 9 If you see messages that refer to "Java Heap Space" while running the compiler, then the java virtual machine does not have enough memory to compile the given templates. You must increase the amount of memory allocated to the java virtual machine when you start the compiler. See the section [ Doc/compiler/running Running the Compiler] for how to specify the VM memory.9 If you see messages that refer to "Java Heap Space" while running the compiler, then the java virtual machine does not have enough memory to compile the given templates. You must increase the amount of memory allocated to the java virtual machine when you start the compiler. See the section [wiki:Doc/compiler/running Running the Compiler] for how to specify the VM memory. 10 10 11 11 === Slow Compilation === … … 18 18 0 errors, 31289 ms, 86 MB/506 MB heap, 11 MB/112 MB nonheap 19 19 }}} 20 The last line with gives the maximum amount of heap memory used and the maximum available (the value marked "heap"). If the maximum used is more than about 80% of the maximum available, then you should consider increasing the memory allocated to the java virtual machine. See the section [ Doc/compiler/running Running the Compiler] for how to specify the VM memory.20 The last line with gives the maximum amount of heap memory used and the maximum available (the value marked "heap"). If the maximum used is more than about 80% of the maximum available, then you should consider increasing the memory allocated to the java virtual machine. See the section [wiki:Doc/compiler/running Running the Compiler] for how to specify the VM memory. 21 21 22 22 == Thread Management ==