Re: event MPM: async write completion?

2005-08-04 Thread Paul Querna
Greg Ames wrote: Brian Pane wrote: Looking at the pattern of calls to ap_core_output_filter() in the event MPM, it occurred to me that it may be straightforward to hand off the writing of the request to an async completion thread in a lot of useful real-world cases. In function

Re: event MPM: async write completion?

2005-08-02 Thread Greg Ames
Greg Ames wrote: Brian Pane wrote: I'm eager to hear some feedback on this idea: * Will it work? Or am I overlooking some design flaw? it should work as long as everything important that happens after the check_pipeline_flush call still gets done somehow. a quick glance at the code

Re: event MPM: async write completion?

2005-08-01 Thread Greg Ames
Brian Pane wrote: Looking at the pattern of calls to ap_core_output_filter() in the event MPM, it occurred to me that it may be straightforward to hand off the writing of the request to an async completion thread in a lot of useful real-world cases. In function check_pipeline_flush() in

event MPM: async write completion?

2005-07-24 Thread Brian Pane
Looking at the pattern of calls to ap_core_output_filter() in the event MPM, it occurred to me that it may be straightforward to hand off the writing of the request to an async completion thread in a lot of useful real-world cases. In function check_pipeline_flush() in http_request.c, a