aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0212-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0212-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch')
-rw-r--r--Spigot-Server-Patches/0212-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0212-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch b/Spigot-Server-Patches/0212-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch
new file mode 100644
index 0000000000..726b175b39
--- /dev/null
+++ b/Spigot-Server-Patches/0212-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch
@@ -0,0 +1,22 @@
+From c5100f8b6c0f5bf7eb1e7f6358a6524c732c9a25 Mon Sep 17 00:00:00 2001
+From: Brokkonaut <[email protected]>
+Date: Tue, 7 Feb 2017 16:55:35 -0600
+Subject: [PATCH] Make targetSize more aggressive in the chunk unload queue
+
+
+diff --git a/src/main/java/net/minecraft/server/ChunkProviderServer.java b/src/main/java/net/minecraft/server/ChunkProviderServer.java
+index 7006466b5..c32fb3ef5 100644
+--- a/src/main/java/net/minecraft/server/ChunkProviderServer.java
++++ b/src/main/java/net/minecraft/server/ChunkProviderServer.java
+@@ -325,7 +325,7 @@ public class ChunkProviderServer implements IChunkProvider {
+ // Spigot start
+ org.spigotmc.SlackActivityAccountant activityAccountant = this.world.getMinecraftServer().slackActivityAccountant;
+ activityAccountant.startActivity(0.5);
+- int targetSize = (int) (this.unloadQueue.size() * UNLOAD_QUEUE_RESIZE_FACTOR);
++ int targetSize = Math.min(this.unloadQueue.size() - 100, (int) (this.unloadQueue.size() * UNLOAD_QUEUE_RESIZE_FACTOR)); // Paper - Make more aggressive
+ // Spigot end
+
+ Iterator iterator = this.unloadQueue.iterator();
+--
+2.12.0.windows.1
+