Webserver

  • Thread starter Thread starter Simon Johnson
  • Start date Start date
S

Simon Johnson

This is really a design question..

I'm writing a HTTP server as a little TCP exercise.. The way of handling
the connections i've drempt up involves invoking a new thread each time
a tcp client wants to connect. Since theres a 25 thread limit on the
framework this doesn't sound a clever idea. Any other ideas?

Simon.
 
Simon Johnson said:
This is really a design question..

I'm writing a HTTP server as a little TCP exercise.. The way of handling
the connections i've drempt up involves invoking a new thread each time
a tcp client wants to connect. Since theres a 25 thread limit on the
framework this doesn't sound a clever idea. Any other ideas?

Aside from Lawrence's reply, where do you get the idea that there's a
25 thread limit on the framework? The ThreadPool has a limited number
of threads, but that's not the framework itself being limited.
 
Back
Top