...

/

Reading and Writing JSON Data as Streams

Reading and Writing JSON Data as Streams

Let’s learn how to read and write the JSON data as streams.

We'll cover the following...

So far, we have seen working with single JSON records. But what happens when we have multiple records to process? This lesson answers this question and many more!

Imagine that we have a slice of Go structures that represent JSON records that we want to process. Should we process the records one by one? It can be done, but is it efficient? It does not! The good thing is that Go supports the processing of multiple JSON records as ...