cold

in ColdFusion 8, can you declare a function as private using cfscript?

Normally you create a function using cfscript like: <cfscript> function foo() { return "bar"; } </cfscript> Is there a way to declare this as a private function, available only to other methods inside the same cfc? I know you can do it with tags: <cffunction name="foo" access="private"> <cfreturn "bar"> </cffunction> But I...

How to force a .NET application to cold-run

Hi, i am trying to run performance counters on a .NET application and i would like to ensure the environment is the same between rebuilds. So far i can only think that the best way is to reboot the pc before each test to make all test COLD. is there another way to achive the same environment without rebooting each time? ...