Create a Consistent Hashing implementation. It divides up the nodes (uses a configurable number of virtual nodes) through the hashing space (size also configurable).
Implemented usage for list insertion.
The current program flow is the following.
Client sends creation request to random server (round-robin)
Server either inserts list to database or redirects it to the node that should
Closes #18
Create a Consistent Hashing implementation. It divides up the nodes (uses a configurable number of virtual nodes) through the hashing space (size also configurable).
Implemented usage for list insertion.
The current program flow is the following.