August 2019
Beginner to intermediate
798 pages
17h 2m
English
In this section, you will learn how to develop an unsophisticated version of a key-value store in Go, which means that you will learn how to implement the core functionality of a key-value store without any additional bells and whistles. The idea behind a key-value store is modest: answer queries fast and work as fast as possible. This translates into using simple algorithms and simple data structures.
The presented program will implement the four fundamental tasks of a key-value store:
These four functions allow you to have ...
Read now
Unlock full access