System Design Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumSystem Design
In the LeastConnectionsBalancer implementation, what happens when .release(server) is called?
code
release(server) {
this.connections.set(server, this.connections.get(server) - 1);
}