|
The
times I referred to were obtained by putting tickcounts around the cfx
tag.
Try outputting GetTickCounts before the call to
the cfx and after calling the CFX - this will give you the real time that the
CFX took. For example:
<cfset
StartTick=GetTickCount()> <cfx_odsmime ... >
<cfset EndTick=GetTickCount()>
<cfoutput>MIME decoding took
#evaluate(EndTick-StartTick)# ms.</cfoutput>
HTH,
Howie
----- Original Message -----
Sent: Thursday, May 27, 2004 11:23
AM
Subject: [iMS] CFX_ODSMIME
Hi
Howie,
While trying to
diagnose some bottlenecks, I noticed an inconsistancy with the ODSMIME tag's
performance. I am processing a specific file. Sometimes it takes 21000ms to
process the file and others it takes 20-30ms. Any idea why this would
happen? I checked to make sure that the tag is set to be loaded in RAM in
the CFADMIN.
Has anyone else
run into this before? Is there anyway to confirm that CF is keeping the tag
loaded in ram?
Regards,
|