书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 85 个相关结果.
  • 2.1. Codec

    Codec SerializeNone JSON Protobuf MsgPack Codec Example: broadcast Currently rpcx supports four type of codec: // SerializeType defines serialization type of payload. ...
  • Part Ⅱ 注册中心

    2484 2019-03-10 《Go RPC 开发指南》
    服务注册中心 Peer2Peer {#peer2peer} MultipleServers {#multiple} ZooKeeper {#zookeeper} 服务器 客户端 Etcd {#etcd} 服务器 客户端 Consul {#consul} 服务器 客户端 mDNS {#mdns} 服务器 客户端 Inprocess ...
  • 2.1. Codec

    684 2018-06-24 《RPCX英文文档》
    Codec Example: broadcast Currently rpcx supports four type of codec: // SerializeType defines serialization type of payload. type SerializeType byte const ( ...
  • 插件开发

    999 2019-03-10 《Go RPC 开发指南》
    插件开发 Server Plugin Client Plugin 插件开发 rpcx为服务器和客户端定义了几个插件接口,在一些处理点上可以调用插件。 Server Plugin 示例: trace go doc type PostConnAcceptPlugin type PostConnAcceptPlugin ...
  • 2.5. Selector

    708 2018-06-24 《RPCX英文文档》
    Selector In a scaled system, there are many nodes to provide same service. They are deployed at the datacenter or multiple datacenter. How do clients select a node to invoke? Yo...
  • 1.6. Function as Service

    623 2018-06-24 《RPCX英文文档》
    Client Example: function In the normal we register methods as services'methods. Methods must follow the below rules: exported method of exported type three arguments, the fir...
  • 1.6. Function as Service

    Client Client Example: function In the normal we register methods as services'methods. Methods must follow the below rules: exported method of exported type three arguments...
  • 分组

    774 2019-03-10 《Go RPC 开发指南》
    分组 分组 分组: group 当你在服务器端注册服务的时候,你可能注意到第三个参数我们一般设置它为空的字符串,事实上你可以为服务增加一些元数据。 你可以通过UI管理器查看服务的元数据 rpcx-ui ),或者增删一些元数据。 group 就是一个元数据。如果你为服务设置了设置group , 只有在这个group 的客户端才能访问这些服务...
  • go学习线路图

    3773 2020-06-11 《Go语言中文文档》
    1. go学习线路图 1.1.1. 路线图 1.1.2. 资源 1. go学习线路图 1.1.1. 路线图 1.1.2. 资源 先决条件 Go SQL 通用开发技能 学习 GIT,在 GitHub 上建立一些仓库,与其它人分享你的代码 了解 HTTP(S) 协议,request 方法(GET, POST, ...
  • 5.3. Bidirectional

    683 2018-06-24 《RPCX英文文档》
    Bidirectional commnunication Example: bidirectional In normal case, clients send requests to services and services returns reponses to clients. It is the request-response rpc ...