ui: maximum allocated jvm memory configurable in preferences
* added setting for maximum memory allocated by JVM to Preferences window. * a value of -1 ignores this setting * changed default value for this setting to -1 * increased JNI version to Java 1.8 * disabled some file system tests for windows
This commit is contained in:
@@ -197,7 +197,7 @@ void ApplicationSettings::setJavaPath(const std::string path)
|
||||
|
||||
int ApplicationSettings::getJavaMaximumMemory() const
|
||||
{
|
||||
return getValue<int>("indexing/java/java_maximum_memory", 512);
|
||||
return getValue<int>("indexing/java/java_maximum_memory", -1);
|
||||
}
|
||||
|
||||
void ApplicationSettings::setJavaMaximumMemory(int size)
|
||||
|
||||
Reference in New Issue
Block a user