9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-30 12:29:19 +00:00
This commit is contained in:
Xiao-MoMi
2022-10-21 17:07:08 +08:00
parent 69616aab3f
commit 6d3eaf682c
105 changed files with 2085 additions and 116 deletions

View File

@@ -1,3 +1,7 @@
# YAML/MySQL/MariaDB
# 存储模式
data-storage-method: YAML
# MySQL settings
MySQL:
host: localhost
@@ -5,15 +9,31 @@ MySQL:
user: root
password: password
database: minecraft
table-name: customfishing_data
property:
use-ssl: false
encoding: utf8
timezone: ''
allowPublicKeyRetrieval: false
# Connection pool settings
table-prefix: customfishing
properties:
cachePrepStmts: 'true'
prepStmtCacheSize: '250'
prepStmtCacheSqlLimit: '2048'
useSSL: 'false'
verifyServerCertificate: 'false'
Pool-Settings:
maximum-pool-size: 10
minimum-idle: 10
maximum-lifetime: 180000
idle-timeout: 60000
MariaDB:
host: localhost
port: 3306
user: root
password: password
database: minecraft
table-prefix: customfishing
properties:
cachePrepStmts: 'true'
prepStmtCacheSize: '250'
prepStmtCacheSqlLimit: '2048'
Pool-Settings:
enable: false
maximum-pool-size: 10
minimum-idle: 10
maximum-lifetime: 180000