What is the best logger in Go?There are many logger implements in Go including built-in log.Aug 26, 20242Aug 26, 20242
Is RWMutex better than Mutex in Go?In Go, there are two main methods for implementing locking. The first is to use sync.Mutex with its Lock and Unlock methods. This method…Aug 25, 2024Aug 25, 2024
How to Increase Slice Capacity in GoDo you know what happens when you add a new element to a slice where len == cap?Jul 30, 2024Jul 30, 2024
Which function should you use to sort a slice?Today, I want to explore different ways to sort a integer slice in Go.Jul 22, 2024Jul 22, 2024
Go 1.22 slices.ConcatI was going through slices.Concat and came across a part that I didn’t understand, so I tried summarizing it.Jul 19, 2024Jul 19, 2024