Search category: Go

Tag Icon

Go Struct Tag and reflect

When interacting with MongoDB, I encountered unfamiliar syntax in Struct fields. This article explores why Go Struct Tags exist and the problems they solve.

Array Symbol

Slicce vs Array in Go

In Go, there are two common data structures for "sequence data": Array and Slice. They are similar in syntax, but the differences in behavior.