The following JVM Args are supported when starting the embedded server.
You can set the max heap size the server is allowed to have (-Xmx) by passing the heapSize parameter to the start command. This parameter is always specified as megabytes.
start heapSize=1024In server.json
You can set the starting heap size for the server (-Xms) by passing the minHeapSize parameter to the start command. This parameter is always specified as megabytes.
In server.json
You can specify ad-hoc JVM args for the server with the JVMArgs parameter.
In server.json
You can specify ad-hoc options for the underlying Runwar library using the RunwarArgs parameter.
In server.json
server set JVM.heapSize=1024
server show JVM.heapSizestart minHeapSize=1024server set JVM.minHeapSize=1024
server show JVM.minHeapSizestart JVMArgs="-XX:MaxGCPauseMillis\=200"server set JVM.args="-XX:MaxGCPauseMillis\=200"
server show JVM.argsstart RunwarArgs="--sendfile-enable false"server set runwar.args="--sendfile-enable false"
server show runwar.args