I don't think lw-process is a good answer to server-side programming. for desktop programming, multi-process can avoid program fails and provide superior performance. but for server-side, considering the consuming of memory and computing resource, threads and lock-free data structure are the better choice. Well, when needing a robust server-side program, you indeed have to program something like lw-process&thread hybrid.
Comments
I don't think lw-process is a good answer to server-side programming. for desktop programming, multi-process can avoid program fails and provide superior performance. but for server-side, considering the consuming of memory and computing resource, threads and lock-free data structure are the better choice. Well, when needing a robust server-side program, you indeed have to program something like lw-process&thread hybrid.