Índice |
|
wrapper.java.maxmemory |
||||||||||
La cantidad máxima de memoria en megabytes que la JVM podrá utilizar. El valor predeterminado es "0" (cero), lo que hará que se utilice el valor predeterminado de la JVM. Para la mayoría de las JVMs, el valor predeterminado es "64MB".
Si se especifica un valor distinto de cero para esta propiedad, se agregará
un parámetro -Xmx apropiado al comando Java generado por el Wrapper.
Si se especifica, la memoria inicial debe ser mayor o igual
que el valor establecido para la propiedad wrapper.
Si esta propiedad se establece en "0" (cero), también es posible especificar el parámetro -Xmx
manualmente usando la propiedad wrapper.
Esta propiedad se proporciona para la comodidad de la mayoría de los usuarios y también permite establecer tamaños de memoria relativos como se describe en la propiedad wrapper.
NOTA
Si una aplicación experimenta java. NOTARecomendamos leer los siguientes enlaces, que describen en detalle cómo los valores de memoria inicial y máxima afectan el rendimiento de Java y qué se puede hacer para mejorar ese rendimiento para una aplicación determinada. |
wrapper.java.maxmemory.percent |
||||||||||
At times, it is necessary to set the memory thresholds relative to the amount of physical memory available on the system. This property accepts a percentage value between 1 and 100 which will translate into a size in MBs. For 32-bit versions of the Wrapper, the value will be calculated based on the minimum between the physical memory and 2048MB.
In the above example (60%), if 1GB (1024MB) of memory is installed on the system, the maximum memory will be set to 614MB (=1024 x 60%). On 32-bit versions of the Wrapper, if the machine has 4GB of memory, then the initial memory will be 1228MB (= 2048 x 60%). NOTAJava behaves very poorly if the JVM has any of its memory swapped, so it is important to take the OS requirements and any other applications into account when deciding on a safe memory level. NOTASince version 3.5.29 it is also possible to use the dynamic variable 'WRAPPER_SYSMEM_<P>' where <P> refers to the percentage of the physical memory available on the system.
For details, please see the Environment Variables page. |
Referencia: Memoria de Java |
|
Referencia: Parámetros |
|