Consistent Hashing

22 points by joshleeb


YogurtGuy

In a real application, we'd probably want to find a different hash function. md5 is relatively slow, and we don't need any of its cryptographic guarantees in this use case.

As an aside, it's not a good idea to use md5 in any new applications. There are practical collision attacks against it (so it's not secure), and it's also slower than actually secure cryptographic hash functions (like blake3).