sofa-pbrpc源码分析之RpcServerOptions

本文详细分析了sofa-pbrpc框架中的RpcServerOptions,涵盖其核心参数,包括工作线程数量、空闲连接最大持续时间、pending大小限制以及带宽控制等,旨在理解RpcServer配置优化的关键点。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

RpcServerOptions

  • RpcServerOptions定义了RpcServer的服务器选项, 包括以下内容:
    – 工作线程数目
    – 空闲连接的最大持续时间
    – 在一个连接中的最大的pending大小
    – 最大的入口、出口带宽
    – 工作线程启动、销毁前执行的函数

RpcServerOptions定义

struct RpcServerOptions
{
    int work_thread_num;
    int keep_alive_time;
    int max_pending_buffer_size;
    int max_through_in;
    int max_through_out;
    bool disable_builtin_services;
    bool disable_list_service;
    ExtClosure<bool()>* work_thread_init_func;
    ExtClosure<bool()>* work_thread_dest_func;
    RpcServerOptions()
        : work_thread_num(8)
        , keep_alive_time(-1)
        , max_pending_buffer_size(2)
        , max_throughput_in(-1)
        , max_throughput_out(-1)
        , disable_builtin_services(false)
        , disable_list_service(false)
        , work_thread_init_func(NULL)
        , work_thread_dest_func(NULL)
    {}
};
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值