Quick Start
This quick start builds the database server, runs it locally, and executes a few example queries over TCP.
Build
cmake -S . -B build -G Ninja
ninja -C build
Run the server
Use the built-in run target (it uses config/settings.yml by default):
ninja -C build run
If you want a custom config, run the binary directly:
./build/xeondb --config path/to/settings.yml
Example queries
To keep this page short, the full set of examples lives in Query Examples.
Quick smoke check:
PING;
Run tests
ninja -C build test
Xeondb Documentation