In ColdFusion 9, when the application reaches its maximum timeout and the memory space is dumped, does the application get rebuilt (i.e. does onApplicationStart get called)?
If so, at which point timeout or on the next page call?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When the application times out then onApplicationStart() is called with the next request to the application. But every request to the application resets the timer. In other words for the application to “time out” it has to be idle (servicing zero requests) for the length of the time specified in as the application timeout property.