> If your CF code architecture has a single file as the
> entry point, with url variables telling it what to
> server up, is there really a bottle neck on busy
> sites?
>
> Let's say five simultaneous request arrive for five
> different file names won't the operating system have
> to get them one at a time? If true, then won't getting
> the same file take no additional time. It might even
> be faster because of file caching on the OS level.
>
> Assumptions: OS Win2K server, CF 4.5 and IIS 5.
>
> I'm no networking guru, so clarification or re
> education is encouraged. Maybe I'm missing something
> on the CF side of it...

It won't make any significant difference. The bottleneck that may occur in
CF is that there is a limited number of threads to process requests. It
doesn't matter if all those threads use the same file or not, whether the
file is cached by CF or not. In any case, by default CF caches its scripts
in memory after they've been parsed, so once that's happened, there won't be
any significant file access.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to