circle-info
Docs Release

Storage Backends

YAML, SQLite, and MySQL storage options

Storage Backends

YAML

No setup is required. Data is stored in plugins/LunnaraStrike/stats/. This is best for servers with fewer than 100 concurrent players.

SQLite

storage:
  type: sqlite

Stores data in a local database file. No external server is needed.

MySQL

storage:
  type: mysql
  mysql:
    host: localhost
    port: 3306
    database: lunnarastrike
    username: root
    password: "your_password"
  pool:
    max-size: 10
    min-idle: 2
    max-lifetime: 1800000
    connection-timeout: 5000
    idle-timeout: 600000
circle-info

The plugin uses HikariCP pooling. If MySQL fails to connect, it falls back to YAML automatically.

Last updated

Was this helpful?