<tr valign="top">
<td><code>‑‑jvmmempc=<em>PERCENT</em></code></td>
<td>
- <em>Only available with standalone executable jar or jalview.bin.Launcher.</em>
- <br/>
Limit maximum heap size (memory) to PERCENT% of total physical memory detected.
This defaults to 90 if total physical memory can be detected.
<br/>
<tr valign="top">
<td><code>‑‑jvmmemmax=<em>MAXMEMORY</em></code></td>
<td>
- <em>Only available with standalone executable jar or jalview.bin.Launcher.</em>
- <br/>
Limit maximum heap size (memory) to MAXMEMORY. MAXMEMORY can be specified in bytes, kilobytes(k), megabytes(m),
gigabytes(g) or if you're lucky enough, terabytes(t).
This defaults to 32g if total physical memory can be detected, or to 8g if total physical memory cannot be detected.
// used by jalview.bin.Launcher to set memory settings. They are not used by
// argparser but are here for Usage statement reasons.
JVMMEMPC(
- "Only available with standalone executable jar or jalview.bin.Launcher.\n"
- + "Limit maximum heap size (memory) to PERCENT% of total physical memory detected. This defaults to 90 if total physical memory can be detected.\n"
+ "Limit maximum heap size (memory) to PERCENT% of total physical memory detected. This defaults to 90 if total physical memory can be detected.\n"
+ "The equals sign (\"=\") separator must be used with no spaces.",
Opt.NOACTION, Opt.BOOTSTRAP, Opt.STRING),
JVMMEMMAX(
- "Only available with standalone executable jar or jalview.bin.Launcher.\n"
- + "Limit maximum heap size (memory) to MAXMEMORY. MAXMEMORY can be specified in bytes, kilobytes(k), megabytes(m), gigabytes(g) or if you're lucky enough, terabytes(t). This defaults to 32g if total physical memory can be detected, or to 8g if total physical memory cannot be detected.\n"
+ "Limit maximum heap size (memory) to MAXMEMORY. MAXMEMORY can be specified in bytes, kilobytes(k), megabytes(m), gigabytes(g) or if you're lucky enough, terabytes(t). This defaults to 32g if total physical memory can be detected, or to 8g if total physical memory cannot be detected.\n"
+ "The equals sign (\"=\") separator must be used with no spaces.",
Opt.NOACTION, Opt.BOOTSTRAP, Opt.STRING),