2022-09-18 16:58:28 +00:00
|
|
|
# Performance Testing
|
|
|
|
|
2024-07-14 23:35:19 +00:00
|
|
|
The performance test can be run with the following tools.
|
|
|
|
|
2022-09-18 16:58:28 +00:00
|
|
|
## 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.
|