This is a simple implementation of RPC(Remote Procedure Call) protocol. It can help us to realize the project of distributed services easily.
Load balancing strategy
- Random LoadBalance
- RoundRobin LoadBalance(按权重轮询)
- LeastActive LoadBalance
Serialization
- JDK native serialization
- Hessian
- Protostuff
- gRPC (Google)
- Thirft (Facebook)
- Dubbo (alibaba)
- Hessian