diff --git a/docs/config.md b/docs/config.md index 8ade72172..f343840d8 100644 --- a/docs/config.md +++ b/docs/config.md @@ -1,5 +1,5 @@ - + ## AuthMe Configuration The first time you run AuthMe it will create a config.yml file in the plugins/AuthMe folder, @@ -12,7 +12,8 @@ DataSource: # What type of database do you want to use? # Valid values: SQLITE, MYSQL backend: 'SQLITE' - # Enable database caching, should improve database performance + # Enable the database caching system, should be disabled on bungeecord environments + # or when a website integration is being used. caching: true # Database host address mySQLHost: '127.0.0.1' @@ -544,4 +545,4 @@ To change settings on a running server, save your changes to config.yml and use --- -This page was automatically generated on the [AuthMe/AuthMeReloaded repository](https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/) on Mon Oct 09 09:22:33 CEST 2017 +This page was automatically generated on the [AuthMe/AuthMeReloaded repository](https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/) on Mon Oct 09 10:19:07 CEST 2017 diff --git a/src/main/java/fr/xephi/authme/settings/properties/DatabaseSettings.java b/src/main/java/fr/xephi/authme/settings/properties/DatabaseSettings.java index f8344b4af..4b3f5d3e0 100644 --- a/src/main/java/fr/xephi/authme/settings/properties/DatabaseSettings.java +++ b/src/main/java/fr/xephi/authme/settings/properties/DatabaseSettings.java @@ -14,7 +14,8 @@ public final class DatabaseSettings implements SettingsHolder { public static final Property 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 USE_CACHING = newProperty("DataSource.caching", true);