Posts tagged with: #go
Let's Build a GraphQL Server in Go, Part 2: Dataloaders
20 January 2020
This is the second in a series of posts covering the process of building a simple yet full featured GraphQL server in Go. In this post we will focus on implementing dataloaders to improve the performance of the server.
Read more →Let's Build a GraphQL Server in Go, Part 1
4 January 2020
This is the first in a series of posts covering the process of building a simple yet full featured GraphQL server in Go. In this post we will use gqlgen and sqlc to build a working GraphQL server backed by a PostgreSQL database, and capable of performing basic CRUD operations.
Read more →Random Ticker in Go
11 December 2019
I'm writing something like a scraper, and I want this program to be able to send requests every x seconds, at a slightly different interval every time. How to accomplish this idiomatically in Go?
Read more →