โšก Performance Optimization (Quick Tips)

Keep it simple. Start with defaults, then tune only if needed.

# Development (laptops)
CHART_MAX_CONCURRENCY=2
CHART_MAX_ROWS=100000

# Production (8โ€“16 GB RAM)
CHART_MAX_CONCURRENCY=8
CHART_TOOL_TIMEOUT_MS=60000
REDIS_URL=redis://redis:6379

๐Ÿงช Monitor

docker compose logs -f
curl http://localhost:8000/health

๐Ÿ› If Slow

๐Ÿงฐ When Scaling

For advanced tuning, see advanced/configuration.md.