Nugget Post: Golang: RPC server/client implementation

As part of my efforts to learn golang, I attempted to write a simple RPC server / client implementation. Between gobs (see my previous post) and the RPC implementation, golang makes it very easy to build a distributed system where servers and client share not only data via gobs, but also methods and functions via … Continue reading Nugget Post: Golang: RPC server/client implementation

Nugget Post: Golang : Gobs and exported identifiers

This one had me scratching my head for a while... while messing around with "gobs" - binary representation of data that can be sent over the network between two golang programs - I ran into the problem of "exported fields". I had followed the post on the golang blog regarding gobs, with some modifications. I … Continue reading Nugget Post: Golang : Gobs and exported identifiers