How to write and use benchmarks? I hope we understand their importance so let’s see couple of thoughts about benchmarks in GoLang:
#development #testing #profiling
https://medium.com/@hackintoshrao/daily-code-optimization-using-benchmarks-and-profiling-in-golang-gophercon-india-2016-talk-874c8b4dc3c5?source=linkShare-b636419a57de-1516810002
#development #testing #profiling
https://medium.com/@hackintoshrao/daily-code-optimization-using-benchmarks-and-profiling-in-golang-gophercon-india-2016-talk-874c8b4dc3c5?source=linkShare-b636419a57de-1516810002
Medium
Daily code optimization using benchmarks and profiling in Golang - Gophercon India 2016 talk
Need some help with analyzing whether algorithm A performs faster than B? Or can I know whether method A performs better than method B? Or…
Good and simple short article about the benchmark writing in GoLang. Code examples are available 😉
#development #benchmarks #testing #basics
https://mycodesmells.com/post/testing-go-with-benchmarks
#development #benchmarks #testing #basics
https://mycodesmells.com/post/testing-go-with-benchmarks
Mycodesmells
Testing Go with Benchmarks - My Code Smells!
Every now and the you face some kind of a problem in your application and come up with two (or more) solutions. You then wonder which is more efficient, which way should you go? If your problem happens to occur in a Golang application, Benchmarks come to…
This is a perfect longread about organization of microservice’s testing.
#microservices #testing #architecture
https://medium.com/@copyconstruct/testing-microservices-the-sane-way-9bb31d158c16?source=linkShare-b636419a57de-1520885775
#microservices #testing #architecture
https://medium.com/@copyconstruct/testing-microservices-the-sane-way-9bb31d158c16?source=linkShare-b636419a57de-1520885775
Medium
Testing Microservices, the sane way
There’s no dearth of information or best-practices or books about how best to test software. This post, however, focuses solely on testing…