package
0.0.0-20241108225342-37a0203cdb23
Repository: https://github.com/swarit-pandey/go-concurrency-zoo.git
Documentation: pkg.go.dev

# README

Level 1

Goal

  • Understanding channels with some complexity
  • Idiomatic Go

What are we doing?

  • There is a cache
  • Data is written or read from the cache only via channels
  • We pass channels to both read and write data

Topics covered

  • Concurrent memory access
  • Goroutines
  • Channels