Tag: go
All the articles with the tag "go".
Implementing Distributed Counter: Part 2 - Networking
Published:Learn how to implement TCP networking for a distributed counter in Go. This part covers TCP transport implementation with proper framing, peer management refactoring, and shows a working distributed counter cluster communicating over an actual network.
Implementing Distributed Counter: Part 1 - Node
Published:Learn how to implement the core Node component of a distributed counter in Go. This part details the Node structure, defines the communication protocol, integrates the CRDT, and implements synchronization tested via in-memory transport.
Implementing Distributed Counter: Part 0 - CRDT
Published:Learn how to build a distributed counter from scratch using Go and CRDT (Conflict-free Replicated Data Types).