Re: Handling multiple requests simultaneously in one thread

2008-01-12 Thread Joachim Zobel
Am Freitag, den 11.01.2008, 09:03 -0800 schrieb Chris Dahl: Are there any modules you know about out there that do something like this? The event-mpm possibly does such things, but I never looked any closer. Sincerely, Joachim

Handling multiple requests simultaneously in one thread

2008-01-11 Thread Chris Dahl
Hi, I am trying to design a custom Apache module that will allow me to efficiently stream data over HTTP to clients. Since many clients will be receiving the same streamed data, I would prefer to not tie up a thread per client, and instead have a single thread serve a group of clients.