logo

Golang 1.22 HTTP Server Routing

On February 6, 2024, version 1.22 of Golang was released. There are a number of feature updates, but the most interesting ones for me were related to HTTP server routing, so I thought I’d post about them.

What is Idempotent?

If you’re developing HTTP APIs, you’ve probably heard about idempotent at one point or another. In this post, we’ll look at what idempotent is and try to understand it a little better through an HTTP API example.