minikv 0.7.0

A production-grade distributed KV store with Raft consensus in ~1,500 lines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# TLS (PEM file paths)
tls_cert_path = "./certs/cert.pem"
tls_key_path = "./certs/key.pem"
# Example minikv configuration (config.toml)

# HTTP listening port
http_port = 8080
# gRPC listening port
grpc_port = 50051
# Metadata database path
metadata_path = "./data/metadata.db"
# Log level (info, debug, warn, error)
log_level = "info"
# Cluster ID (optional)
cluster_id = "minikv-dev"