vnpy/docs/rpc_service.md
2019-07-29 20:18:31 +08:00

34 lines
630 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# RPC服务
由于全局锁GIL的存在单进程的Python程序只能利用CPU单核的算力为了突破这一限制解决方案就是多进程分布式的程序架构。但每个进程之间的数据在操作系统内默认是独立隔离的无法直接访问。RPC全称Remote-Procedure-Call中文“远程过程调用”是最常用的跨进程通讯方式之一。
## RPC服务器
### 加载模块
### 启动运行
## RPC客户端
### 加载接口
### 连接使用
## 参考样例
位于examples/server_client目录下
### 服务器进程
GUI模式
无界面模式
### 客户端进程