2016-06-09 05:57:14 +02:00
|
|
|
From e423c9fa1d8a9de6de4cf6b62658cbe3e15d421f Mon Sep 17 00:00:00 2001
|
2016-03-22 04:51:58 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Wed, 2 Mar 2016 23:46:57 -0600
|
|
|
|
Subject: [PATCH] Configurable Chunk IO Thread Base Count
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2016-06-05 00:26:11 +02:00
|
|
|
index 87bae87..9ab6445 100644
|
2016-03-22 04:51:58 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2016-05-02 05:54:08 +02:00
|
|
|
@@ -192,4 +192,9 @@ public class PaperConfig {
|
2016-03-25 05:59:37 +01:00
|
|
|
Bukkit.getLogger().log(Level.INFO, "Disabling player interaction limiter, your server may be more vulnerable to malicious users");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
2016-03-22 04:51:58 +01:00
|
|
|
+ public static int minChunkLoadThreads = 2;
|
2016-06-05 00:26:11 +02:00
|
|
|
+ private static void chunkLoadThreads() {
|
2016-03-22 04:51:58 +01:00
|
|
|
+ minChunkLoadThreads = Math.min(6, getInt("settings.min-chunk-load-threads", 2)); // Keep people from doing stupid things with max of 6
|
|
|
|
+ }
|
2016-03-25 05:59:37 +01:00
|
|
|
}
|
2016-03-22 04:51:58 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java b/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java
|
|
|
|
index e4fd9bc..7b7a3d0 100644
|
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java
|
|
|
|
@@ -1,5 +1,6 @@
|
|
|
|
package org.bukkit.craftbukkit.chunkio;
|
|
|
|
|
|
|
|
+import com.destroystokyo.paper.PaperConfig;
|
|
|
|
import net.minecraft.server.Chunk;
|
|
|
|
import net.minecraft.server.ChunkProviderServer;
|
|
|
|
import net.minecraft.server.ChunkRegionLoader;
|
|
|
|
@@ -7,7 +8,7 @@ import net.minecraft.server.World;
|
|
|
|
import org.bukkit.craftbukkit.util.AsynchronousExecutor;
|
|
|
|
|
|
|
|
public class ChunkIOExecutor {
|
|
|
|
- static final int BASE_THREADS = 1;
|
|
|
|
+ static final int BASE_THREADS = PaperConfig.minChunkLoadThreads; // Paper
|
|
|
|
static final int PLAYERS_PER_THREAD = 50;
|
|
|
|
|
|
|
|
private static final AsynchronousExecutor<QueuedChunk, Chunk, Runnable, RuntimeException> instance = new AsynchronousExecutor<QueuedChunk, Chunk, Runnable, RuntimeException>(new ChunkIOProvider(), BASE_THREADS);
|
|
|
|
--
|
2016-06-09 05:57:14 +02:00
|
|
|
2.8.3
|
2016-03-22 04:51:58 +01:00
|
|
|
|