using compression encoding for serverless requests
Just wondering if the serverless endpoint is capable of receiving and processing compressed requests? (eg. zstd, gzip)
2 Replies
all endpoints use https so data is already compressed during transit, if you compress input then its upto you to decode in your worker, dont compress the json payload, it will throw errors
thank you!