Skip to content

Increase allocated RAM

Antoine Willerval edited this page Jan 30, 2023 · 3 revisions

Standalone

With the standalone version (the jar version), you simply need to replace/add in your command -XmxNG, where N is the number of gigs allocated in the RAM

example with 10G of RAM

java -Xmx10G -jar qendpoint.jar

Windows

The default installation location of qendpoint is C:\Program Files\qendpoint\, you need to go to the app/qendpoint.cfg file.

You need to find the line

[JavaOptions]
java-options=-Djpackage.app-version=CURRENT_VERSION

You simply need to add -XmxNG, where N is the number of gigs allocated in the RAM.

example with 10G of RAM

[JavaOptions]
java-options=-Djpackage.app-version=CURRENT_VERSION -Xmx10G

Linux

You need to go in the installation directory TODO: FIND WHERE?

You need to find the line

[JavaOptions]
java-options=-Djpackage.app-version=CURRENT_VERSION

You simply need to add -XmxNG, where N is the number of gigs allocated in the RAM.

example with 10G of RAM

[JavaOptions]
java-options=-Djpackage.app-version=CURRENT_VERSION -Xmx10G

MacOS

The default installation location of qendpoint is /Library/qendpoint.app/, you need to go to the app/qendpoint.cfg file.

In the app/qendpoint.cfg you need to find the line

[JavaOptions]
java-options=-Djpackage.app-version=CURRENT_VERSION

You simply need to add -XmxNG, where N is the number of gigs allocated in the RAM.

example with 10G of RAM

[JavaOptions]
java-options=-Djpackage.app-version=CURRENT_VERSION -Xmx10G
Clone this wiki locally