Ryan Wrote:
>> Some other performance issues that I've noticed:
>> 0. It's using read rather than mmap to get the content
>> from the files being delivered. Is this just a config
>> error?
>
>We use read if the file isn't large enough to make MMAP a good idea. This
>is the same logic that Apache 1.3 used. How large is the file you are
>trying to send? What platform are you on? What is APR_HAS_MMAP set to in
>srclib/apr/include/apr.h?
I'm running on Solaris 2.6, on a Ultra 4000 with 8 CPU's
I checked that APR_HAS_MMAP is defined.
The file is 33K, and is sitting on a local disk.
..Ian