2020-01-22 03:02:07 +01:00
|
|
|
From f33920c8054472e73f9e712da3d32a5b34469cf2 Mon Sep 17 00:00:00 2001
|
2019-04-27 05:05:36 +02:00
|
|
|
From: Antony Riley <antony@cyberiantiger.org>
|
|
|
|
Date: Tue, 29 Mar 2016 08:22:55 +0300
|
|
|
|
Subject: [PATCH] Sanitise RegionFileCache and make configurable.
|
|
|
|
|
|
|
|
RegionFileCache prior to this patch would close every single open region
|
|
|
|
file upon reaching a size of 256.
|
|
|
|
This patch modifies that behaviour so it closes the the least recently
|
|
|
|
used RegionFile.
|
|
|
|
The implementation uses a LinkedHashMap as an LRU cache (modified from HashMap).
|
|
|
|
The maximum size of the RegionFileCache is also made configurable.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2019-12-11 03:43:21 +01:00
|
|
|
index 6ef5bb9f3..d500cd75a 100644
|
2019-04-27 05:05:36 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2019-05-06 09:20:16 +02:00
|
|
|
@@ -218,4 +218,9 @@ public class PaperConfig {
|
2019-04-27 05:05:36 +02:00
|
|
|
private static void loadPermsBeforePlugins() {
|
|
|
|
loadPermsBeforePlugins = getBoolean("settings.load-permissions-yml-before-plugins", true);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public static int regionFileCacheSize = 256;
|
|
|
|
+ private static void regionFileCacheSize() {
|
2019-06-17 05:52:34 +02:00
|
|
|
+ regionFileCacheSize = Math.max(getInt("settings.region-file-cache-size", 256), 4);
|
2019-04-27 05:05:36 +02:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/RegionFileCache.java b/src/main/java/net/minecraft/server/RegionFileCache.java
|
2019-12-11 03:43:21 +01:00
|
|
|
index 2fe27b460..57ce53cfd 100644
|
2019-04-27 05:05:36 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/RegionFileCache.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/RegionFileCache.java
|
2019-12-11 03:43:21 +01:00
|
|
|
@@ -25,7 +25,7 @@ public final class RegionFileCache implements AutoCloseable {
|
2019-04-27 05:05:36 +02:00
|
|
|
if (regionfile != null) {
|
|
|
|
return regionfile;
|
|
|
|
} else {
|
|
|
|
- if (this.cache.size() >= 256) {
|
2019-12-11 03:43:21 +01:00
|
|
|
+ if (this.cache.size() >= com.destroystokyo.paper.PaperConfig.regionFileCacheSize) { // Paper - configurable
|
2019-05-28 01:01:45 +02:00
|
|
|
((RegionFile) this.cache.removeLast()).close();
|
2019-04-27 05:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-01-22 03:02:07 +01:00
|
|
|
2.25.0.windows.1
|
2019-04-27 05:05:36 +02:00
|
|
|
|