Hacker News new | ask | show | jobs
by infogulch 425 days ago
That's neat. Does it require 1 connection = 1 process to work? I don't see how you can have a long running server with this feature.
1 comments

No, the init process hands over the listener FD allowing the server to accept() connections.

You can also do 1 connection = 1 process, though, but it's absolutely not required nor particular common these days.