I've checked docs and can't find what the default applicationtimeout is.
So if my applicaiton.cfc is the following, when does onApplicationStart() run again?
Copy code
component {
this.name = "test";
public boolean function onApplicationStart(){
application.uniqueid = createUUID();
return true;
}
}