Next: UDP & TCP
Up: Algorithms
Previous: Algorithms
  Contents
Concurrent & Iterative Servers
The simplest server algorithm is iterative. It processes one request at a time, queuing others that arrive during the processing time. Concurrent servers, however, can handle many requests at the same time2.5.
If requests are very infrequent, an iterative server may perform slightly better than a concurrent one, but generally the only advantage of iterative algorithms is their simplicity of design.
2000-10-20