-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for configuring minimum num gRPC channels on CacheC…
…lient (#345) Prior to this commit, each instance of the CacheClient would always open a single gRPC channel to the server. This commit adds a configuration setting on the GrpcConfiguration object which allows a user to configure a minimum number of channels; this is useful for cases where callers will be issuing more than 100 concurrent requests, since 100 is the maximum number of requests that can be multiplexed over a single channel.
- Loading branch information
Showing
3 changed files
with
95 additions
and
31 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
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
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