创建一个并发安全的映射,使用锁还是goroutine?

huangapple go评论111阅读模式
英文:

Creating a concurrent safe map, lock or goroutine?

问题

我创建了一个对并发访问安全的地图,在每个操作(或复合操作)中,我都用锁包装了操作。

func .. {
  mu.Lock()
  defer mu.Unlock()
  ..
}

我可以同时使用goroutine吗?我应该使用goroutine吗?

英文:

I created a map that is safe for concurrent access, in each of the operations (or compound operations) I wrapped the operation with a lock.

func .. {
  mu.Lock()
  defer mu.Unlock()
  ..
}

Could I use goroutines for this also? Should I be using goroutines?

答案1

得分: 1

这在Go 1.9及更高版本中已不再需要。已经有一个用于并发使用的映射实现 sync.Map

英文:

This is no longer necessary in Go 1.9 and later. There is already a map implementation for concurrent use sync.Map.

huangapple
  • 本文由 发表于 2016年4月20日 01:12:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/36725098.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定