-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Option to use gzip to compress event #814
base: main
Are you sure you want to change the base?
Conversation
@launchdarkly/js-sdk-common size report |
@launchdarkly/js-client-sdk-common size report |
@launchdarkly/js-client-sdk size report |
a0145e6
to
6ec484d
Compare
* Gzip compress the post body only if the underlying SDK framework supports it | ||
* and the config option enableEventCompression is set to true. | ||
*/ | ||
compressBodyIfPossible?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend against mentioning the config option here. This layer shouldn't know about the config option as the platform/Requests interface may be used in other cases in the future.
tlsOptions?: LDTLSOptions, | ||
proxyOptions?: LDProxyOptions, | ||
logger?: LDLogger, | ||
enableEventCompression?: boolean, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In which cases is this true and in which is it not set / false?
Requirements
Describe the solution you've provided
LDConfig option
enableEventCompression
was added for js-server-sdk-common and NodeRequests was modified to support gzip compression of POST bodies if this option is enabled.