Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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字节 | 根据实际情况 |