mprpc 是一個超快速的Python RPC 庫,最近一直在看 RPC 的東西,考慮如何應用到公司的項目中,模仿 Celery 的方式二次封裝了一下。python
項目地址: mprpc_configgit
pip install mprpc_config
構建一個以下的目錄結構github
config.py 包含RPC配置屬性(任意命名)shell
app_module_name RPC 接口模塊(任意命名,可有多個)服務器
server.py RPC 服務器app
Configration
類,將 config.py
的模塊名 config
做爲字符串傳入bind_class
方法將初始化後的全部 RPC 接口綁定給 RPCServer
客戶端啓動方式可參考 mprpc 。函數
示例代碼在
example
目錄
server.py測試
from mprpc_config.rpc_server import RPCServer, StreamServer from mprpc_config import rpc_config if __name__ == '__main__': print('-------start server--------') config = rpc_config.Configuration("config") config.bind_class(RPCServer) server = StreamServer(('127.0.0.1', 6000), RPCServer) server.serve_forever(stop_timeout=10)
client.pycode
from mprpc_config.rpc_client import RPCClient, RPCPoolClient from mprpc_config.rpc_client import RPCPool print('---------- client ----------') client = RPCClient('127.0.0.1', 6000) print('2 add 4: ', client.call('add', 2, 4)) print('2 plus 4: ', client.call('plus', 2, 4)) print('2 minus 4: ', client.call('minus', 2, 4)) print('---------- done ----------') print('---------- client pool ----------') client_pool = RPCPool(RPCPoolClient, dict(host='127.0.0.1', port=6000)) with client_pool.connection() as client: print('2 add 4: ', client.call('add', 2, 4)) print('2 plus 4: ', client.call('plus', 2, 4)) print('2 minus 4: ', client.call('minus', 2, 4)) print('---------- done ----------')
啓動 server 和 clientserver
$ python server.py ---------- server ---------- $ python client.py ---------- client ---------- 2 add 4: 6 2 plus 4: 8 2 minus 4: -2 ---------- done ---------- ---------- client pool ---------- 2 add 4: 6 2 plus 4: 8 2 minus 4: -2 ---------- done ----------