Tag: golang ✕ Clear filter
-
Options Pattern in Golang
This blog discusses the implementation and need of the options pattern in Go.
Read → -
Running/Testing AWS Lambda function locally in Golang
Running and testing AWS Lambda functions locally in Golang allows developers to catch bugs and issues early, ensuring smooth deployment. It involves setting up a local environment, writing the Lambda function.
Read → -
Building a basic token manager
Learn how to build a basic token manager in Go for handling access tokens required by APIs. This post covers using goroutines for concurrent token generation, caching tokens with atomic operations for thread-safety, and periodic token refreshing based on expiration duration.
Read →