Operating System Support in Distributed Systems
Operating System Support in Distributed Systems
Operating System Support in Distributed Systems
In thread per request architecture the i/o thread spawns a new worker thread
for each request,and that worker destroy itself when it has processed request.
Thus threads don’t need to be in shared queue.
The thread per connection architecture associates a thread with each
connection . the server creates a new worker thread when a client makes a
connection and destroy the thread when client closes the connection.
The thread per object architecture associates a thread with each remote
object. An I/O thread receives requests and queues them for the workers, but
this time there is a per object queue.