go-concurrentMap icon indicating copy to clipboard operation
go-concurrentMap copied to clipboard

Results 3 go-concurrentMap issues
Sort by recently updated
recently updated
newest added

我下了你的代码,跑了性能测试的代码,发现性能并没有你统计的那么好,甚至比直接加锁的性能还低,请问是怎么回事?

对于key,能否设计出一个key的interface,比如: ``` Go type Key interface { Hash() int } ``` 这样用户就可以自定义key的类型,这样也可以很好的扩展?