JSON streaming in C# and Go.
- Run the C# program:
cd cs && dotnet run
- Run the Go program:
cd go && go run .
- SQLite database from Wikipedia dataset
- C#
- 1 endpoint to return the database as JSON with legacy JSON library
- 1 endpoint to return the database as JSON with modern JSON library
- 1 endpoint to stream the database as JSON
- Go
- 1 endpoint to return the database as JSON with legacy JSON library
- 1 endpoint to return the database as JSON with modern JSON library
- 1 endpoint to stream the database as JSON
- find out if we can stream Gzipped JSON in the client