Step 7 - Challenge: Performance Optimisation and Benchmarking

In this step your goal is to use the Redis Benchmark tool to test your server’s GET and SET performance.

I suggest you run a Redis server locally and see how that performs, then compare it to your solution.

For example, here’s how Redis performs on my Macbook:

redis-benchmark -t set,get, -n 100000 -q
SET: 110497.24 requests per second, p50=0.215 msec
GET: 117647.05 requests per second, p50=0.215 msec

Refer to the lesson in this step to learn how to optimise the performance of your implementation.