RPC server in multiple-process mode
RPC server in multiple-process mode
How can I lauch multiple processes listening on the same port in RCFProto server side?
Re: RPC server in multiple-process mode
Do you mean forking a child process which then accepts new connections on a listening socket originally created by the parent process? RCFProto is not really setup for that to work. With RCFProto you would be using multiple threads in a single process, to handle multiple connections.