Let’s say I have made a Go Client library for accessing some API and named it V1. I made some changes to it to improve it and call it V2.
Now, I want to make sure whether V2 is performing better than V1 or not.
How can I do performance testing or benchmarking for HTTP Client libraries?
Thanks in advance!