-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Anshu Garg edited this page Sep 18, 2026
·
5 revisions
VortexKV can be installed and running in under 30 seconds via multiple deployment methods.
curl -fsSL https://raw.githubusercontent.com/GargAnshu9468/vortexkv/main/install.sh | bashLaunch single container:
docker run -d -p 7379:7379 -p 7380:7380 \
-e VORTEX_REQUIREPASS="vortex_secure_2026" \
ianshugarg/vortexkv:latestLaunch complete cluster with Prometheus & Grafana stack:
git clone https://github.com/GargAnshu9468/vortexkv.git
cd vortexkv
docker compose --profile monitoring up -dRequirements: Go 1.22+
git clone https://github.com/GargAnshu9468/vortexkv.git
cd vortexkv
make buildBinaries generated in bin/:
-
bin/vortex-server: Server daemon & embedded visual deck -
bin/vortex-cli: Interactive CLI client -
bin/vortex-operator: Kubernetes operator controller
redis-cli -p 7379 -a "vortex_secure_2026" PING
# PONG
redis-cli -p 7379 -a "vortex_secure_2026" SET mykey "CyberVortex"
redis-cli -p 7379 -a "vortex_secure_2026" GET mykey
# "CyberVortex"Open your browser at:
👉 http://localhost:7380
VortexKV delivers 6,870,000+ ops/sec pipelined throughput (world record) and 210,000+ ops/sec direct concurrency with 111µs p50 latency.
Run the official benchmark script:
./scripts/run_world_record_benchmark.shOr benchmark manually with redis-benchmark:
# 1. Direct Concurrency (50 concurrent clients, no pipelining)
redis-benchmark -p 7379 -a "vortex_secure_2026" -c 50 -n 100000 -t get,set -q
# 2. Pipelined Velocity (P=64 Multi-Reactor, 100 clients)
redis-benchmark -p 7379 -a "vortex_secure_2026" -c 100 -n 2000000 -P 64 -t ping,get -q