标签: python sockets grpc
Python的gRPC支持是否允许我实现一个在Unix域套接字(而不是端口)上侦听的服务器?我正在使用Python 3.5.3和grpcio / grpcio-tools 1.18.0。
grpcio
grpcio-tools
到目前为止,我还找不到任何相关示例或直接证据。 official examples使用server.add_insecure_port('[::]:50051'),目前尚不清楚套接字如何适合该套接字。
server.add_insecure_port('[::]:50051')
答案 0 :(得分:0)
显然,add_insecure_port(address)毕竟接受格式为unix://var/run/test.sock的Unix域套接字。
add_insecure_port(address)
unix://var/run/test.sock