Performance testing a REST API reveals its runtime behaviour under stress and can be an early indicator of QoS violations in production. Apache JMeter offers a GUI mode where such load tests can be created and their results be analyzed easily. In this tutorial, I will show you how to test the performance of the FizzBuzz-API written in Rust presented in one of my previous articles. Let’s get started. Install JMeter Installing JMeter is very simple once you have Java ...

Learn How to Create a FizzBuzz Implementation in Rust FizzBuzz is a classical software developer interview question with the simple goal of writing an application that outputs “Fizz” for numbers divisible by 3, “Buzz” for numbers divisible by 5 and “FizzBuzz” for numbers matching both cases. In this article, I will show you how to implement FizzBuzz using the Rust programming language and the Rocket framework. Start by using Rust nightly and setting up a new Rust project using cargo: ...

Bernhard Knasmüller on Software Development