ring

2024-05-31T00:38:23.887139Z

Does anyone have any experience performance/load testing your ring sites? What libraries and or techniques have been useful?

Ben Sless 2024-05-31T04:02:36.387059Z

Use wrk2 to bombard your server and see what rate it handles Attach a profiler, either clj-async-profiler or JFR and profile the server during load testing

Ben Sless 2024-05-31T04:21:49.425249Z

You can also profile the handler you pass the server directly with criterium and async profiler

jf 2024-06-02T14:43:38.685529Z

this might not be the expected answer given this forum, but I like using locust (written in Python). I like it for its ability to really write custom code for load testing. YMMV