apache / brpc

brpc is an Industrial-grade RPC framework using C++ Language, which is often used in high performance system such as Search, Storage, Machine learning, Advertisement, Recommendation etc. "brpc" means "better RPC".

Home Page:https://brpc.apache.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

v1.8 配置参数

haoxiaokun opened this issue · comments

请问文档是不是跟1.8不匹配,如何使用set_response_compress_type,参数set_response_compress_type(brpc::CompressTypeZlib);编译不过去,还有[max_body_size]怎么设置,brpc::ServerOptions options;没有此参数。有交流群吗

如何使用set_response_compress_type,参数set_response_compress_type(brpc::CompressTypeZlib);编译不过去

应该是COMPRESS_TYPE_ZLIB吧。

enum CompressType {
COMPRESS_TYPE_NONE = 0;
COMPRESS_TYPE_SNAPPY = 1;
COMPRESS_TYPE_GZIP = 2;
COMPRESS_TYPE_ZLIB = 3;
COMPRESS_TYPE_LZ4 = 4;
}

[max_body_size]怎么设置

max_body_size应该是gflag,通过./bin --max_body_size=10000设置。