Which hash algorithm does hash() implement? (SOLVED)

Purely out of curiosity, which algorithm does hash() use to hash strings?

1 Like

We use 64-bit MurmurHash2A, which we modified to be endian-neutral.

4 Likes

Ah, cool, ok thanks!

1 Like