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

    RPCX 起步 端对端的例子 服务器端开发 客户端同步调用 客户端异步调用 多服务调用 服务器端的代码 客户端代码 RPCX 起步 rpcx 是一个分布式的服务框架,致力于提供一个产品级的、高性能、透明化的RPC远程服务调用框架。它参考了目前在国内非常流行的Java生态圈的RPC框架Dubbo、Motan等,为Go生态圈提供一个丰富功能...
  • Go之rpc框架rpcx

    2847 2020-11-15 《Golang 开发笔记》
    6.2 Golang之rpc框架rpcx 前言 功能 性能 快速开始 基本安装 服务端 客户端 运行 跨语言 示例 新建client.php 相关资料 links 6.2 Golang之rpc框架rpcx 前言 远程过程调用(Remote Procedure Call,缩写为 RPC)是一个计算机通信协议。通过该协议程序...
  • 4.1. Benchmark

    Benchmark Test Logic Test Environment Test Result TPS Latency: mean time Latency: median time Benchmark The benchmark code is at rpcx-ecosystem/rpcx-benchmark . Use th...
  • Gateway

    1050 2019-03-10 《Go RPC 开发指南》
    网关 部署模型 Gateway Agent http协议 例子 网关 Gateway 为 rpcx services 提供了 http 网关服务. 你可以使用你熟悉的编程语言, 比如Java、Python、C#、Node.js、Php、C\C++、Rust等等来调用 rpcx 服务。查看一些编程语言实现的例子 。 这意味着,你可以不...
  • 5.1. Gateway

    Gateway Deployment models Gateway Agent Protocol Example Gateway Gateway is a http gateway for rpcx services. You can write rpc http clients in any programming languages...
  • 5.1. Gateway

    707 2018-06-24 《RPCX英文文档》
    Gateway Gateway is a http gateway for rpcx services. You can write rpc http clients in any programming languages such as Java、Python、C#、Node.js、Php、C\C++、Rust and others. See e...
  • 5.2. HTTP Invoke

    HTTP Invoke 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 sa...
  • 4.1. Benchmark

    620 2018-06-24 《RPCX英文文档》
    Benchmark The benchmark code is at rpcx-ecosystem/rpcx-benchmark . Use the same test environment, the same test data and the same test parameters, test grpc, rpcx, dubbo, mota...
  • 1.4. Client

    726 2018-06-24 《RPCX英文文档》
    Client Example: 101basic Clients use the same transport protocol to send requests to services and get responses from them. type Client struct { Conn net . Conn ...
  • 1.3. Server

    634 2018-06-24 《RPCX英文文档》
    Server Example: 102basic You can implements services in Server side. The type of services is not important. You can use customized type to keep states or use struct{} or int ...