• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

go语言学习--map的并发

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

go提供了一种叫map的数据结构,可以翻译成映射,对应于其他语言的字典、哈希表。借助map,可以定义一个键和值,然后可以从map中获取、设置和删除这个值,尤其适合数据查找的场景。但是map的使用有一定的限制,如果是在单个协程中读写map,那么不会存在什么问题,如果是多个协程并发访问一个map,有可能会导致程序退出,并打印下面错误信息:

fatal error: concurrent map read and map write

上面的这个错误不是每次都会遇到的,如果并发访问的协程数不大,遇到的可能性就更小了。例如下面的程序:

 1 package main
 2 
 3 func main() {
 4     Map := make(map[int]int)
 5 
 6     for i := 0; i < 10; i++ {
 7         go writeMap(Map, i, i)
 8         go readMap(Map, i)
 9     }
10 
11 }
12 
13 func readMap(Map map[int]int, key int) int {
14     return Map[key]
15 }
16 
17 func writeMap(Map map[int]int, key int, value int) {
18     Map[key] = value
19 }

只循环了10次,产生了20个协程并发访问map,程序基本不会出错,但是如果将循环次数变大,比如10万,运行下面程序基本每次都会出错:

 1 package main
 2 
 3 func main() {
 4     Map := make(map[int]int)
 5 
 6     for i := 0; i < 100000; i++ {
 7         go writeMap(Map, i, i)
 8         go readMap(Map, i)
 9     }
10 
11 }
12 
13 func readMap(Map map[int]int, key int) int {
14     return Map[key]
15 }
16 
17 func writeMap(Map map[int]int, key int, value int) {
18     Map[key] = value
19 }

go官方博客有如下说明:

Maps are not safe for concurrent use: it's not defined what happens when you read and write to them simultaneously. If you need to read from and write to a map from concurrently executing goroutines, the accesses must be mediated by some kind of synchronization mechanism. One common way to protect maps is with sync.RWMutex.

go FAQ解释如下:

After long discussion it was decided that the typical use of maps did not require safe access from multiple goroutines, and in those cases where it did, the map was probably part of some larger data structure or computation that was already synchronized. Therefore requiring that all map operations grab a mutex would slow down most programs and add safety to few. This was not an easy decision, however, since it means uncontrolled map access can crash the program.

大致意思就是说,并发访问map是不安全的,会出现未定义行为,导致程序退出。所以如果希望在多协程中并发访问map,必须提供某种同步机制,一般情况下通过读写锁sync.RWMutex实现对map的并发访问控制,将map和sync.RWMutex封装一下,可以实现对map的安全并发访问,示例代码如下:

 1 package main
 2 
 3 import "sync"
 4 
 5 type SafeMap struct {
 6     sync.RWMutex
 7     Map map[int]int
 8 }
 9 
10 func main() {
11     safeMap := newSafeMap(10)
12 
13     for i := 0; i < 100000; i++ {
14         go safeMap.writeMap(i, i)
15         go safeMap.readMap(i)
16     }
17 
18 }
19 
20 func newSafeMap(size int) *SafeMap {
21     sm := new(SafeMap)
22     sm.Map = make(map[int]int)
23     return sm
24 
25 }
26 
27 func (sm *SafeMap) readMap(key int) int {
28     sm.RLock()
29     value := sm.Map[key]
30     sm.RUnlock()
31     return value
32 }
33 
34 func (sm *SafeMap) writeMap(key int, value int) {
35     sm.Lock()
36     sm.Map[key] = value
37     sm.Unlock()
38 }

但是通过读写锁控制map的并发访问时,会导致一定的性能问题,不过能保证程序的安全运行,牺牲点性能问题是可以的。

参考

go官方博客:https://blog.golang.org/go-maps-in-action

go FAQ:https://golang.org/doc/faq#atomic_maps



作者:songleo
链接:https://www.jianshu.com/p/10a998089486


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
用Go写一个后端接口模拟器发布时间:2022-07-10
下一篇:
go语言学习-接口发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap