Search Results

1
vote
1answer
339 views

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 pri …
6
votes
4answers
450 views

Can a ColdFusion cfc method determine its own name?

I am creating an API, and within each method I make a call to a logging method for auditing and troubleshooting. Something like: <cffunction name="isUsernameAvailable"> & …
0
votes

ColdFusion Template Request count optimization

I would say at least 8 per core, not per CPU. And I think 8 is a little low given modern CPU cores, I would say at least 12. …
12
votes

Restarting ColdFusion mail queue

Yes there is. <cfset sFactory = CreateObject("java","coldfusion.server.ServiceFactory")> <cfset MailSpoolService = sFactory.mailSpoolService> <cfset MailSpoolService. …
1
vote

Can a ColdFusion cfc method determine its own name?

I thought of another way that could work. Setup an OnMissingMethod something like this: <cffunction name="onMissingMethod"> <cfargument name="missingMethodName" …