Lines Matching full:compression
1 # gRPC C++ Message Compression Tutorial
15 Change your current directory to examples/cpp/compression
18 $ cd examples/cpp/compression/
39 Additionally, we can configure the compression settings.
41 In the client, set the default compression algorithm of the channel via the channel arg.
45 // Set the default compression algorithm for the channel.
51 Each call's compression configuration can be overwritten by client context.
54 // Overwrite the call's compression algorithm to DEFLATE.
58 In the server, set the default compression algorithm via the server builder.
62 // Set the default compression algorithm for the server.
66 Each call's compression configuration can be overwritten by server context.
69 // Overwrite the call's compression algorithm to DEFLATE.