Михаил Вестник

Results 3 comments of Михаил Вестник

why don't you want to use the FNV family of algorithms? There is an implementation in the standard library. FNV64 is 4-5 times faster than xxhash. ```go prime := 17861029589083791777...

I wrote a simple benchmark. You can check the results: ```go package experiment import ( "testing" "github.com/cespare/xxhash/v2" ) const ( prime uint64 = 17861029589083791777 offsetBasis uint64 = 14695981039346656037 ) func...