When you say link from the cfc method to another method, do you mean a cfhttp
call to the other method (which would be kind of weird), if so the app.cfm
would get processed again. If you are just calling another method
secondMethod() in the same cfc, then the app.cfm goes once. If you are calling
another method in a different cfc that you invoke, the app.cfm i'm pretty sure
only goes once, unless the namespace for the invoked cfc is different. IE
com.domain.mycfc.method1() makes call to com.domain222.mycfc2.method2()