Writing databases and distributed systems in Go.
Now that we have our storage layer finished, we need some way for users to access and manipulate that data remotely. The standard approach seems to be JSON over…
In the last post we looked at fast, primitive encoding using strconv but in this post we’ll take a higher level approach by using templates with the fmt package. The fmt package builds on…