-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The concept of the worker pool was to limit the work the scheduler has to do by having an expanding pool of goroutines available for work at all times, rather than frequently destroying and recreating them. In practice, this wasn't useful because the work we do per message turned out to be much cheaper than expected. Even at 150+ messages per minute, the pool never reached its nominal cap.
- Loading branch information
1 parent
b4b3dcb
commit e92f7de
Showing
2 changed files
with
186 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.