Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

FYI, In the Go version, the lock can be added more simply, without the rw:

// Synchronize map access between multiple goroutines. type cache struct { m map[string]string sync.RWMutex }

Then, you can just use:

cache.Lock/Unlock/RLock/RUnlock directly. It's clearer. The beauty of Go's mixins.



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: