https://github.com/hslam/rpc-benchmark
https://github.com/hslam/rpc-benchmark
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hslam/rpc-benchmark
- Owner: hslam
- License: mit
- Created: 2020-07-02T03:20:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T01:16:20.000Z (over 3 years ago)
- Last Synced: 2024-06-20T12:01:26.002Z (almost 2 years ago)
- Language: Go
- Size: 647 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rpc-benchmark
**Comparison to other packages**
|Package| [netrpc](https://github.com/golang/go/tree/master/src/net/rpc "netrpc")| [jsonrpc](https://github.com/golang/go/tree/master/src/net/rpc/jsonrpc "jsonrpc")|[rpc](https://github.com/hslam/rpc "rpc")|[grpc](https://google.golang.org/grpc "grpc")|[rpcx](https://github.com/smallnest/rpcx "rpcx")|
|:--:|:--|:--|:--|:--|:--|
|Epoll/Kqueue|No|No|Yes|No|No|
|Multiplexing|Yes|Yes|Yes|Yes|Yes|
|Pipelining|No|No|Yes|No|No|
|Auto Batching|No|No|Yes|No|No|
|Transport|No|No|Yes|No|No|
|Server Push|No|No|Yes|Yes|Yes|
##### Low Concurrency


##### High Concurrency
