Storage
Recommended Setup
Storage:
# sqlite/mysql/yaml
# For better performance it is recommended to use MYSQL as storage.
type: mysql
mysql:
# Only mysql
host: localhost
# Only mysql
port: 3306
# Only mysql
base: MyDatabase
#SSL is only valid for MYSQL, most servers are not necessary to use it as true.
useSSL: false
#Change mysql table default charset (utf8, latin1 etc...), Use empty for default.
charset: utf8
# maximum size that the (mysql) pool is allowed to reach. (https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing)
maximumPoolSize: 10
# Used for Mysql mandatory and optional for H2 and Sqlite (default: root)
user: MyUsername
# Used for Mysql mandatory and optional for H2 and Sqlite (default is empty)
pass: 'MyPasswd'
databases:
clan_table: uclans-clans
player_table: uclans-players
invite_table: uclans-invite
moderation_table: uclans-moderation
logger_table: uclans-logger
mail_table: uclans-mail
rewards_table: uclans-rewards
datasource:
mysql: jdbc:mysql://
sqlite: 'jdbc:sqlite:'
Last updated