llxisdsh
llxisdsh
I found that reusing the table loading and hash calculation,and moving the read-only path outside of`doCompute`,can make it faster.Using a built-in hasher can also speed things up(though it sacrifices compatibility).However,by...
**Describe the bug** The benchmark test cannot complete, and fmt.Println(111) fails to print any output. The test appears to hang indefinitely. **To Reproduce** Run the test function: ``` const countLoad...
``` func BenchmarkDelete_alphadose_haxmap(b *testing.B) { b.ReportAllocs() var m = haxmap.New[int, int]() for i := 0; i < 1000000; i++ { m.Set(i, i) } runtime.GC() b.ResetTimer() b.RunParallel(func(pb *testing.PB) { i :=...