-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Which problem is this PR solving? The throughput of Redis pub/sub is impacted by the number of messages sent per time unit. To improve performance and ensure a higher throughput of kept messages, we need to reduce the number of kept messages sent. This PR implements a batching strategy similar to the one used for dropped messages, reducing the frequency of sending individual kept messages. ## Short description of the changes - Introduced a batching strategy for kept messages, similar to the existing strategy for dropped messages. - Refactor kept and dropped decision processing to reduce duplicated code
- Loading branch information
Showing
6 changed files
with
257 additions
and
199 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.