optimizing badger cache, won a 10-15% improvement in most benchmarks

This commit is contained in:
2025-11-16 15:07:36 +00:00
parent 9bb3a7e057
commit 95bcf85ad7
72 changed files with 8158 additions and 4048 deletions

View File

@@ -0,0 +1,25 @@
version: '3.8'
services:
dgraph:
image: dgraph/standalone:latest
container_name: dgraph-orly-test
ports:
- "8080:8080" # HTTP API
- "9080:9080" # gRPC
- "8000:8000" # Ratel UI
volumes:
- dgraph-data:/dgraph
environment:
- DGRAPH_ALPHA_JAEGER_COLLECTOR=false
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
volumes:
dgraph-data:
driver: local