Arista Networks interview question

how to do socket programming supporting multiple clients without using multi-threading

Interview Answers

Anonymous

30 May 2013

use a queue - event based

1

Anonymous

7 Aug 2013

use fork when ever new client comes, and make child process serve the client.

3