Calling CFC object
Hi,
Is there any difference in terms of speed between these two methods of calling a CFC object function
<cfset x=obj.myFunction()>
and
<cfinvoke component="#obj#" method="myFunction" returnVariable="x">
obj having been instantiated already. I like using cfinvoke because I can use cfinvokeargument, but I would like to make sure that it runs just as fast.
Thanks.
