Golang Golang Is memory size doubled if passing a slice to a parameter? Suppose you are one of the people who came from C or similar programming language and started using Golang. In that case... 2024.10.09 Golang
Golang Golang Type Switch does not work for a pointer in struct? I wrote this article because I didn't know the behavior of type switch well especially when the target type is pointer t... 2024.07.29 Golang
Golang Golang What would be the simplest way to set the default value? I needed to set the default value if a user did not put the property. There were several ways to set a default value, bu... 2024.07.10 Golang
Golang Golang Guarantee to process only once by using sync.Once If a shared resource is needed on multiple goroutines and the initialization must be done only once on one of the gorout... 2024.03.11 Golang
Golang Golang Use a pointer receiver to define a function for a struct Do you recognize that there are two ways to define a method for a struct? func (m StructName) FuncName(){ // do somethin... 2024.03.08 Golang
Golang Golang How/When to use sync.Cond When should sync.Cond be used instead of channel? Golang provides easy ways for asynchronous processing. As you know, ch... 2024.03.06 Golang
Golang Golang Set channel direction to prevent usage error Do you often use a channel? Have you ever considered the channel direction? To use a channel, someone sends data to the ... 2024.03.04 Golang
Golang Golang Check variable order in Struct if you must reduce memory usage A recent computer has enough resources and thus we might not have the opportunity to reduce memory usage. However, it's ... 2024.02.26 Golang
Golang Golang Dynamic access to a property in a struct I needed dynamic access to all properties in a struct in unit tests. In my case, the struct has only boolean properties.... 2024.02.16 Golang
Golang Golang Is Compiling Regex In Loop Really Expensive? A regex is a useful feature to check whether a string contains a special format. If we have many formats, we might want ... 2024.02.05 Golang