Performance Benchmarking

1 min read

Authors
banner

Performance Benchmarking

Apache Bench

# 1000 requests, 100 concurrent
ab -n 1000 -c 100 http://example.com/

# With timing
ab -n 1000 -c 100 -g results.tsv http://example.com/

Siege

# 100 concurrent, 30 seconds
siege -c 100 -t 30s http://example.com/

# URLs from file
siege -f urls.txt

Vegeta

echo "GET http://example.com/" | \
  vegeta attack -duration=30s | \
  vegeta report

Performance measured!

© 2025 Vijay Rajendran