Just to add to Dave's comment...

The only problem you might run into is that since the requests simply do not 
time out, that means if there are any really long running requests and many 
requests of that same type (long running), it will tie up your server's thread 
pool causing other requests to have to wait before they are handled.  The 
server then appears to be very slow and unresponsive.  

Whereas, if a timeout is set, then the long running requests will timeout 
preventing a situation where the server is saturated by long running requests 
inhibiting other requests.  However, simply setting a timeout is not the 
immediate right solution to the case of long requests bogging the 
server because the consequence is the long running requests will be timed out 
which might not be acceptable to the usability of the site.   

However, if you do not have any long running requests, then your server may not 
run into this problem.

Suzanne Capener
Cell: 801.391.9203 




________________________________
From: Dave Watts <[email protected]>
To: cf-server <[email protected]>
Sent: Wednesday, July 1, 2009 3:09:52 PM
Subject: Re: Default behavior wwhen Timeout Requests not checked?


> In looking at our CF 8 production WEB servers I found one that does not have 
> the
> Timeout Requests after nn seconds checked in the administrator.
>
> What is the impact of this?  Everyone discussing this subject advises having 
> it set
> but what is the impact of it being disabled?  I find no documentation on the 
> default
> behavior that CF takes when Timeout Requests is not enabled.

I'm pretty sure that requests simply won't time out in that case.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more informatio



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-server/message.cfm/messageid:6827
Subscription: http://www.houseoffusion.com/groups/cf-server/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.10

Reply via email to