Hacker News new | ask | show | jobs
by usrbin 1561 days ago
What is the purpose of cutting off the queue at a n% full? Isn't that effectively saying that the queue size is actually n% of the stated size, or am I missing detail?
3 comments

Perhaps "rejects new items" is the key - a web server that hits a certain percentage utilization only allow existing clients/connections/logged in users/whatever to connect; refuse new connections.
It's probabilistic.
Wait until you hear about hash table capacities.