並發環境應用map的解決方案

來源:互聯網
上載者:User

眾所周知,golang的map是非協程安全的(go1.6版本以後,go1.6之前讀安全),而並發讀寫map的需求應該是很普遍的。舉例如下:

package mainimport "fmt"func main() {    a := make(map[int]bool, 0)    for i:=0;i<100;i++{        go func() {            for i := 0; i < 20000; i++ {                a[i] = false                fmt.Printf("%v %v\n",i,a[i])            }        }()    }}

運行報錯:
fatal error: concurrent map writes
1.9版本之前,官方提供的解決方案是自己封裝個帶同步鎖的struct。例如:

package mainimport (    "fmt"    "sync")type SafeMap struct{    sync.RWMutex    data map[int]int}func main() {    a := SafeMap{data: make(map[int]int)}    for i:=0;i<100;i++{        go func() {            for j := 0; j < 20000; j++ {                a.Lock()                a.data[j] = i                fmt.Printf("%v %v\n", i, j)                a.Unlock()            }        }()    }}

1.9版本以後,sync包引入了sync.Map,效能比起之前的解決方案有比較大的提升:

package main    import (        "fmt"        "sync"    )        func main() {        a := new(sync.Map)        wg := new(sync.WaitGroup)        wg.Add(100)        for i:=0;i<100;i++{            go func() {                for j := 0; j < 100; j++ {                    a.Store(i, j)                }                wg.Done()            }()        }        wg.Wait()        a.Range(func(key, value interface{}) bool {            fmt.Printf("%v %v\n", key, value)                return true        })    }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.