# Configuration

```yaml
#  Remote databases
#   - MariaDB
#
#  Don't require any extra configuration
#   - H2
storage-method: h2

entry:
  flush-interval: 30 # (in seconds)
  flush-min-size: 0
  console-log: false

# A list of commands that should be ignored by the plugin.
ignored-commands:
  - "register"
  - "login"
  - "setblock"
  - "minecraft:setblock"
  - "fill"
  - "minecraft:fill"

# The following block defines the settings for remote database storage methods.
data:
  address: localhost
  database: minecraft
  username: root
  password: ''

  pool-settings:
    maximum-pool-size: 5
    minimum-idle: 5
    maximum-lifetime: 1800000 # 30 minutes
    keepalive-time: 0
    connection-timeout: 5000 # 5 seconds
    properties:
      useUnicode: true
      characterEncoding: utf8

  table-prefix: 'datahistory_'
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ohalee.com/products/playerdatahistory/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
