How does this work? Instead of using evaluate? Is this faster? I have a lot of evaluate statements in my code and Ramond Chan's words haunt me ;)
What alternatives to evaluate are there? And, another question. If I have a big long fat list, is it faster to convert it to an array and loop over the array than it is to just loop over the list or use the listgetat() command? Brook at At 10:59 AM 31/07/02 -0600, you wrote: >Wow. It looks like we can put evaluatives between hashes again. >Shades of CF3. > >To answer your question, in CF4-5, you cannot put evaluatives between >hashes. > >----- Original Message ----- >From: Craig Thomas <[EMAIL PROTECTED]> >Date: Wednesday, July 31, 2002 10:59 am >Subject: RE: CFMX Taking all CPU Resources? (CODE) > > > >> I don't have CF5 to run it on but hopefully some folks here > > >>will be able > > >>to confirm / deny the speed differences. > > > > CFMX > > > > p3 733 > > Debugging on > > No Trusted Cache > > 3400 ms (varies a little, like maybe 100ms) > > > > CF 5 same machine > > 740 ms > > > > Also, to run on my cf5 install I hade to modify this: > > > > >><cfoutput> > > >>#GetTickCount() - request.StartTime# ms > > >><cfdump label="deserialized packet" var="#ctemp#"/> > > >></cfoutput> > > > > to this: > > > > > > <cfoutput> > > #evaluate(GetTickCount() - request.StartTime)# ms > > <cfdump label="deserialized packet" var="#ctemp#"/> > > </cfoutput> > > > > -------why is that? > > > > -Craig > > > > > > > ______________________________________________________________________ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

