2019-12-11 23:43:22 +00:00
From ea0c748587a2f8db9942b79451971ba63d98d112 Mon Sep 17 00:00:00 2001
2019-04-27 06:26:04 +00:00
From: Brokkonaut <hannos17@gmx.de>
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/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
2019-12-11 23:43:22 +00:00
index 1d4eddd93..492d1538f 100644
2019-04-27 06:26:04 +00:00
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
2019-12-11 23:43:22 +00:00
@@ -110,7 +110,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
this.u = new AtomicInteger();
2019-05-31 03:19:06 +00:00
this.playerMap = new PlayerMap();
this.trackedEntities = new Int2ObjectOpenHashMap();
2019-12-11 23:43:22 +00:00
- this.z = Queues.newConcurrentLinkedQueue();
+ this.z = new com.destroystokyo.paper.utils.CachedSizeConcurrentLinkedQueue<>(); // Paper
2019-05-31 03:19:06 +00:00
this.definedStructureManager = definedstructuremanager;
2019-12-11 23:43:22 +00:00
this.w = worldserver.getWorldProvider().getDimensionManager().a(file);
2019-05-31 03:19:06 +00:00
this.world = worldserver;
2019-12-11 23:43:22 +00:00
@@ -356,7 +356,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
2019-05-27 23:01:45 +00:00
// Spigot start
org.spigotmc.SlackActivityAccountant activityAccountant = this.world.getMinecraftServer().slackActivityAccountant;
activityAccountant.startActivity(0.5);
- int targetSize = (int) (this.unloadQueue.size() * UNLOAD_QUEUE_RESIZE_FACTOR);
2019-07-20 04:01:24 +00:00
+ int targetSize = Math.min(this.unloadQueue.size() - 100, (int) (this.unloadQueue.size() * UNLOAD_QUEUE_RESIZE_FACTOR)); // Paper - Make more aggressive
2019-05-27 23:01:45 +00:00
// Spigot end
while (longiterator.hasNext()) { // Spigot
long j = longiterator.nextLong();
2019-12-11 23:43:22 +00:00
@@ -378,7 +378,8 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
2019-05-31 03:19:06 +00:00
Runnable runnable;
2019-12-11 23:43:22 +00:00
- while ((booleansupplier.getAsBoolean() || this.z.size() > 2000) && (runnable = (Runnable) this.z.poll()) != null) {
+ int queueTarget = Math.min(this.z.size() - 100, (int) (this.z.size() * UNLOAD_QUEUE_RESIZE_FACTOR)); // Paper - Target this queue as well
+ while ((booleansupplier.getAsBoolean() || this.z.size() > queueTarget) && (runnable = (Runnable) this.z.poll()) != null) { // Paper - Target this queue as well
2019-05-31 03:19:06 +00:00
runnable.run();
}
2019-04-27 06:26:04 +00:00
--
2019-12-11 23:43:22 +00:00
2.17.1
2019-04-27 06:26:04 +00:00