Netprog 2002 - Client/Server Issues
23
One thread per client
lUse new Thread().start();
lUsing threads makes it easier (less overhead) to have sibling processes share information. lSharing information must be done carefully (use synchronized)
Watch out for deadlocks!