Database Options

When deploying the Floating Server, you have two database options:

1

Redis

A fast and scalable database ideal for environments requiring high performance. Redis is supported from version 1.4.10 onwards.

Example Configuration:

floating-server.yaml
database:
  type: redis
  addresses: 
    - localhost:6379
2

File-Based Database

An embedded option, ideal for Windows environments or smaller-scale deployments.

Example Configuration:

floating-server.yaml
database:
  type: file
  addresses: 
    - database

Was this helpful?