带有Unix域套接字的Python中的gRPC服务器

时间:2019-02-23 18:43:13

标签: python sockets grpc

Python的gRPC支持是否允许我实现一个在Unix域套接字(而不是端口)上侦听的服务器?我正在使用Python 3.5.3和grpcio / grpcio-tools 1.18.0。

到目前为止,我还找不到任何相关示例或直接证据。 official examples使用server.add_insecure_port('[::]:50051'),目前尚不清楚套接字如何适合该套接字。

1 个答案:

答案 0 :(得分:0)

显然,add_insecure_port(address)毕竟接受格式为unix://var/run/test.sock的Unix域套接字。