views:

751

answers:

2

By default the nursery is supposed to be 25% of the heap, we have the initial heap size set to 1GB. With verbose gc on, we see that our nursery is sized at 55-60MB. We have forced the size using -Xmns256M -Xmnx512M. Shouldn't this happen automatically?

A: 

Are you missing the M at the end of -Xmnx512M?

matt b
+1  A: 

@matt b

We do have that, just missed it when typing the question.
I updated the question.

Thanks

Mike Schall