书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 85 个相关结果.
  • 客户端开发示例

    1458 2019-03-10 《Go RPC 开发指南》
    Client XClient 服务发现 服务治理 (失败模式与负载均衡) 广播与群发 Client Example: 101basic 客户端使用和服务同样的通信协议来发送请求和获取响应。 type Client struct { Conn net . Conn Plugins Plug...
  • 1.1. Introduction

    RPCX Introduction RPC RPCX Introduction rpcx is a RPC framework, faster, more features. rpcx 2.0 and below extends Go standard rpc package but rpcx 3.0 has been refactored a...
  • 快速起步

    2860 2019-03-10 《Go RPC 开发指南》
    快速起步 安装 实现Service 实现 Server 实现 Client 异步调用 Service 快速起步 安装 首先,你需要安装 rpcx: go get - u - v github . com / smallnest / rpcx /... 这一步只会安装 rpcx 的基础功能。如果你想要使用 etcd 作为...
  • 1.1. Introduction

    1093 2018-06-24 《RPCX英文文档》
    RPCX Introduction RPC RPCX Introduction rpcx is a RPC framework, faster, more features. rpcx 2.0 and below extends Go standard rpc package but rpcx 3.0 has been refactor...
  • UI管理工具

    1002 2019-03-10 《Go RPC 开发指南》
    UI管理工具 UI管理工具 rpcx提供了一个简单的UI管理程序,可以查看和搜索当前注册的服务以及服务的状态, 同时你也可以临时禁用服务,分组或者更改服务的元数据。 rpcx-ui
  • 服务端开发示例

    1959 2019-03-10 《Go RPC 开发指南》
    Server Service Server Server Example: 102basic 你可以在服务端实现Service。 Service的类型并不重要。你可以使用自定义类型来保持状态,或者直接使用 struct{} 、 int 。 你需要启动一个TCP或UDP服务器来暴露Service。 你也可以添加一些plugin来为服务器...
  • 1.7. Registry

    Registry peer2peer peer2multiple zookeeper etcd consul mDNS In process Registry Registry implements service discovery. Services registered themself into registries an...
  • 1.7. Registry

    957 2018-06-24 《RPCX英文文档》
    Registry Registry implements service discovery. Services registered themself into registries and clients can find those service via registries. There are some poplular produc...
  • 6 web 框架

    1870 2020-11-15 《Golang 开发笔记》
    Go之web框架gin Go之rpc框架rpcx
  • 5.2. HTTP Invoke

    788 2018-06-24 《RPCX英文文档》
    HTTP Invoke A rpcx server can be accessed via HTTP. The HTTP headers are same to the approach to access gateway . Obviously, Invoke via HTTP can not achive the same high perfor...