We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cdb343 commit 8fe385dCopy full SHA for 8fe385d
leaves-server/src/main/java/org/leavesmc/leaves/LeavesConfig.java
@@ -1245,6 +1245,15 @@ public int getLinearFlushThreads() {
1245
@GlobalConfig(value = "flush-delay-ms", lock = true)
1246
public int flushDelayMs = 100;
1247
1248
+ @GlobalConfig(value = "region-unload-idle-ms", lock = true)
1249
+ public int regionUnloadIdleMs = 600000;
1250
+
1251
+ @GlobalConfig(value = "region-unload-check-interval-ms", lock = true)
1252
+ public int regionUnloadCheckIntervalMs = 30000;
1253
1254
+ @GlobalConfig(value = "max-flush-per-run", lock = true)
1255
+ public int maxFlushPerRun = 256;
1256
1257
@GlobalConfig(value = "use-virtual-thread", lock = true)
1258
public boolean useVirtualThread = true;
1259
0 commit comments