> Bill Stoddard wrote:
> .....
>
> >So changing the AP_MIN_BYTES_TO_WRITE just moves the relative postion of the write()
and
> >the check pipeline read.
> >
>
> It has one other side-effect, though, and that's what's bothering me:
> In the case where core_output_filter() decides to buffer a response because
> it's smaller than 8KB, the end result is to turn:
>     sendfile
> into:
>     mmap
>     memcpy
>     munmap
>     ... buffer some more requests' output until we have 8KB ...
>     writev
>
> ...
>

Yack... just noticed this too. This renders the fd cache (in mod_mem_cache) virtually
useless.  Not sure why we cannot setaside a fd.

Bill

Reply via email to