summaryrefslogtreecommitdiffstats
path: root/src/main/resources
diff options
context:
space:
mode:
authorEvilSeph <evilseph@gmail.com>2013-10-23 19:29:05 -0400
committerEvilSeph <evilseph@gmail.com>2013-10-23 19:29:05 -0400
commitde16ba6eecbaaa5808e31e8122e10c7450e4d03e (patch)
tree283ba49d12ae49f6b511220c50674e629706f0c2 /src/main/resources
parent6430c868c779b5dfab4d82875959a0b3f4885d28 (diff)
downloadcraftbukkit-de16ba6eecbaaa5808e31e8122e10c7450e4d03e.tar
craftbukkit-de16ba6eecbaaa5808e31e8122e10c7450e4d03e.tar.gz
craftbukkit-de16ba6eecbaaa5808e31e8122e10c7450e4d03e.tar.lz
craftbukkit-de16ba6eecbaaa5808e31e8122e10c7450e4d03e.tar.xz
craftbukkit-de16ba6eecbaaa5808e31e8122e10c7450e4d03e.zip
Re-enable built in auto-save. Fixes BUKKIT-4800
When Minecraft first introduced an auto-save feature, we were taken by surprise by how much of an impact it actually had on the performance of the server. After investigating the potential causes of the significant slow-downs we saw at the time, we came to the conclusion that it was a combination of the auto-save interval being incredibly frequent and servers already having an auto-save solution that was conflicting with the newly added built-in one. Since we noticed that most servers already had their own auto-save solution, we decided to completely disable the built in auto-save by default. In hindsight, however, we were so happy that we discovered and squashed the cause of the performance issues that we forgot to consider the future and, as a result, some servers have unfortunately been caught by surprise when they ran their servers without any auto-save plugins. Without the auto-save plugin conflict, however, Minecraft's default save interval of 45 seconds is not suitable for the types of servers that run Bukkit, to the point where it was negatively impacting performance. As such, we've decided to re-enable the built in auto-save at an interval of 5 minutes for newly created servers.
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/configurations/bukkit.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/configurations/bukkit.yml b/src/main/resources/configurations/bukkit.yml
index 61a95e33..60a894f6 100644
--- a/src/main/resources/configurations/bukkit.yml
+++ b/src/main/resources/configurations/bukkit.yml
@@ -36,7 +36,7 @@ chunk-gc:
ticks-per:
animal-spawns: 400
monster-spawns: 1
- autosave: 0
+ autosave: 6000
auto-updater:
enabled: true
on-broken: [warn-console, warn-ops]