reductstore 1.19.0

ReductStore is a time series database designed specifically for storing and managing large amounts of blob data.
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright 2026 ReductSoftware UG
// Licensed under the Business Source License 1.1

use reductstore::{cfg::CoreExtCfgParser, launcher::launch_server};

#[tokio::main]
async fn main() {
    let ext_cfg_pareser = CoreExtCfgParser;
    launch_server(ext_cfg_pareser).await;
}