geoyws
geoyws

Reputation: 3687

What is the proper name given to MySQL's Linear Hash algorithm?

https://dev.mysql.com/doc/refman/5.7/en/partitioning-linear-hash.html

I can't seem to find an equivalent on Wikipedia.

Consistent Hashing was the closest I could find.

Upvotes: 0

Views: 133

Answers (1)

Matt Timmermans
Matt Timmermans

Reputation: 59174

It's called 'linear hashing': https://en.wikipedia.org/wiki/Linear_hashing

It has been used since the 80s to make hash tables that rehash incrementally as they grow.

Upvotes: 1

Related Questions