Add note to caching option

This commit is contained in:
Gabriele C
2017-10-09 10:19:27 +02:00
parent 29c30f6c22
commit a39edde297
2 changed files with 6 additions and 4 deletions
@@ -14,7 +14,8 @@ public final class DatabaseSettings implements SettingsHolder {
public static final Property<DataSourceType> BACKEND =
newProperty(DataSourceType.class, "DataSource.backend", DataSourceType.SQLITE);
@Comment("Enable database caching, should improve database performance")
@Comment({"Enable the database caching system, should be disabled on bungeecord environments",
"or when a website integration is being used."})
public static final Property<Boolean> USE_CACHING =
newProperty("DataSource.caching", true);