Posts
All the articles I've posted.
Memory Locality, Optimize Your Go Code
Published: at 09:26 AMWhat's the different when you see Go code using []*structs or []structs? Choosing which approach and understand what happen behind that code is important when you want to write high performance code.
In C/C++, array is just a pointer..
Published: at 05:04 AMArray is derived data type that has been used anywhere due to its ability to constructed primitive data types (int, float, char) and grouped multiple value of the same type together.
Building an Observability Pipeline for Go Service with Grafana, Loki, and Promtail
Published: at 07:58 PMDebugging a service with less information to analyze could be pain in the ass, especially when there are multiple services communicate to each other. Sometimes we need to move from one server to another just to check the log files and analyze it or utilize `grep` . While obviously not everyone has access to the server itself.