Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neutron123ab/nrpc
A homemade RPC framework.
https://github.com/neutron123ab/nrpc
nacos netty sdk spring-boot-starter
Last synced: 5 days ago
JSON representation
A homemade RPC framework.
- Host: GitHub
- URL: https://github.com/neutron123ab/nrpc
- Owner: neutron123ab
- Created: 2023-08-03T08:42:50.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-28T17:55:08.000Z (about 1 year ago)
- Last Synced: 2024-10-10T11:43:26.780Z (26 days ago)
- Topics: nacos, netty, sdk, spring-boot-starter
- Language: Java
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nRPC —— 自制rpc框架
技术栈
* 网络通信:netty
* 注册中心:nacos
* 序列化:protostuff## 协议:
| magic_code | version | length | messageType | codec | compress | requestId | body |
| ---------- | ------- | ------------ | ----------- | ---------- | ------------ | --------- | ------------ |
| 魔数 | 版本号 | 报文头部长度 | 消息类型 | 序列化方式 | 数据压缩方式 | 请求id | 消息内容 |
| 4字节 | 1字节 | 4字节 | 1字节 | 1字节 | 1字节 | 4字节 | 根据实际情况 |