-
Book Overview & Buying
-
Table Of Contents
Practical Systems Programming in Go
By :
As we conclude this chapter, it should be clear that mastering structured data and database interactions is essential for building practical, reliable Go applications. From parsing JSON files to designing queries, generating database reports, and even representing complex structures such as graphs in JSON, you have seen how Go enables you to move and process information across different sources. By exploring both single-record operations and flowing data streams, you have seen how Go provides tools for processing information at scale, whether using the classic encoding/json or the high-performance experimental json/v2. The chapter also highlighted how structured formats such as JSON underpin not only configuration and operational records but also algorithmic applications.
In the next chapter, we will shift our focus from data at rest to data in motion. You will learn how to build networked TCP/IP applications in Go, starting with simple TCP and UDP servers and clients and getting...