开发者

IPC: Connect for each request or keep socket open?

开发者 https://www.devze.com 2023-03-09 12:37 出处:网络
I am planning to use sockets (local TCP) to communicate between two processes (running locally). One process will act as a server, but both processes send messages to each other asynchronously. Should

I am planning to use sockets (local TCP) to communicate between two processes (running locally). One process will act as a server, but both processes send messages to each other asynchronously. Should I keep the socket connection open for the lifetime of the processes, or re-conn开发者_开发技巧ect for each request?

Are there any problems that may occur if I keep a local socket open?


Keep the socket open.

Its the simpler option and you don't incur in the overhead of opening a new socket (from the client point of view) or accepting a new client (from server point of view).


If it's just one client, then you should keep the socket open but be ready to reconnect in case of error (the user could have reset network interfaces for example, so connection is not guaranteed to be alive). If you have many clients, use disconnection after inactivity timeout of certain time. This will let you get rid of inactive, hung or "lost" (the ones that passed away but there was no signal about socket closing form them) clients.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号