Has Anyone Done Load Testing with a Rust-based Framework?

0
20
Asked By CuriousCoder42 On

I recently developed a Rust-based HTTP framework for JavaScript and submitted it to the TechEmpower benchmarks. Unfortunately, my results were surprisingly low, and I'm not sure why this happened. I might have made some mistakes while configuring the Docker file. I'm really looking for any help or insights on this issue!

2 Answers

Answered By LoadTester99 On

It sounds like you're trying to conduct load tests on your Rust HTTP framework. If that's the case, you'll want to define whether you're testing for many requests or users hitting your framework at once. Can you clarify what your goals are with the load testing?

Answered By DebugDude88 On

Experiencing low scores on wrk could mean there's something off with your configuration. Ensure you're using options like keep-alive, debug logging, and check you're not running a non-release build. What flags did you use when you ran wrk?

CuriousCoder42 -

I used -c 100 -t 8 -d 15s. The main issue is that it performs well locally, but when I submitted it to the official TechEmpower benchmarks, it scored really low. Since they require you to dockerize your app for testing, that might be the root of the problem.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.