From 877907622df333f8b0fb673fc02429fb9f9d1940 Mon Sep 17 00:00:00 2001 From: Patrick Stewart Date: Thu, 17 Oct 2024 19:18:28 -0700 Subject: [PATCH] add: adding info on running benchmark test --- docs/Testing.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/Testing.md diff --git a/docs/Testing.md b/docs/Testing.md new file mode 100644 index 0000000..178c63c --- /dev/null +++ b/docs/Testing.md @@ -0,0 +1,10 @@ +# Performance Testing + +The performance test can be run with the following tools. + +## WRT + + ```bash + wrk -t12 -c400 -d30s http://localhost:8080/query?queries=20 + ``` +This runs a benchmark for 30 seconds, using 12 threads, and keeping 400 HTTP connections open.