dongshi1207 2018-03-19 03:21
浏览 1589
已采纳

如何清理sync.map?

I can't have access to map inside Range loop method. I just want an equivalente method of normal map apply in sync.map https://play.golang.org/p/515_MFqSvCm

package main

import (
    "sync"
)

type list struct {
    code string
    fruit
}

type fruit struct {
    name     string
    quantity int
}

func main() {
    lists := []list{list{"asd", fruit{"Apple", 5}}, list{"ajsnd", fruit{"Apple", 10}}, list{"ajsdbh", fruit{"Peach", 15}}}
    map1 := make(map[string]fruit)
    var map2 sync.Map
    for _, e := range lists {
        map1[e.code] = e.fruit
        map2.Store(e.code, e.fruit)
    }

    //erase map
    for k, _ := range map1 {
        delete(map1, k)
    }

    //can´t pass map as argument,so I can´t delete it´s values
    map2.Range(aux)
}

func aux(key interface{}, value interface{}) bool {
    map2.Delete(key) //doesn´t work
    return true
}
  • 写回答

1条回答 默认 最新

  • douhutongvm382381 2018-03-19 03:49
    关注

    For example,

    //erase map
    map2.Range(func(key interface{}, value interface{}) bool {
        map2.Delete(key)
        return true
    })
    

    Playground: https://play.golang.org/p/PTASV3sEIxJ

    Or

    //erase map
    delete2 := func(key interface{}, value interface{}) bool {
        map2.Delete(key)
        return true
    }
    map2.Range(delete2)
    

    Playground: https://play.golang.org/p/jd8dl71ee94

    Or

    func eraseSyncMap(m *sync.Map) {
        m.Range(func(key interface{}, value interface{}) bool {
            m.Delete(key)
            return true
        })
    }
    
    func main() {
        // . . .
    
        //erase map
        eraseSyncMap(&map2)
    }
    

    Playground: https://play.golang.org/p/lCBkUv6GJIO

    Or

    //erase map: A zero sync.Map is empty and ready for use.
    map2 = sync.Map{}
    

    Playground: https://play.golang.org/p/s-KYelDxqFB

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题