I'm writing a data analysis program on a 64-bit SPARC/Solaris system. The program needs to use about 8-12gig of memory at a time. The machine has 32gig in it, so that shouldn't be a problem, but Java won't let me create a VM with a max heap size bigger than 4gig. anyone know how to do this?
edit: for clarification i am running with the following commands:
java -d64 -Xmx12G
