RSSAmplifier

ashwiniag · Apr 6, 2026

Which Mutex to use in Go

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

Let's understand this with log structure example. A commit log is just an append-only slice // at its heart, this is all a log is type Log struct { records []string } func (l *Log) Append(record string) { l.records = append(l.records, record) } func (l *Log) Read(index int) string

Read on ashwiniag.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.