> As a followon, has anyone come up with ways to reduce the load on the server > when actually performing these sorts of tasks?
Hey Steve, Not sure if it's exactly what you're after, but I've found big performance improvements when working with large files if you use arrays or structures rather than lists. ColdFusion performs very poorly on large lists. For example, after reading a log file into the variable "Log", you do something like: <cfset aLog = ListToArray(Log,chr(10))> Each row of the log file now becomes an element in the array and it's a lot faster to process. Hope that helps some Tim --- You are currently subscribed to cfaussie as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
