I've got an array items[] Each item in items[] is a struct. item has keys id, date, value (i.e., item.id, item.date, item.value)

I want to use StructSort to sort the item collection by a date

Is this the best way to do it in ColdFusion 8:

<cfset allStructs = StructNew()>
<cfloop array = #items# index = "item">
    <cfset allStructs[item.id] = item>
    <cfset unixtime = DateDiff("s", CreateDate(1970,1,1), item.date)>
    <cfset allStructs[item.id].unixtime = unixtime>
</cfloop>
<cfset allStructs = StructSort(allStructs, "numeric", "desc", "unixtime")>

It's going to be dreadfully slow

link|improve this question

3  
how slow is it? You could also convert it to a query and use Query-of-queries to sort it. Might be quicker. – Sam Farmer Jun 14 '10 at 23:31
feedback

1 Answer

up vote 3 down vote accepted

You will still need to convert to unixtime, but ArrayOfStructsSort might be faster. At least you can compare the two options.

link|improve this answer
Ooooh thanks. I'll do a comparison. Right now I decided to cache the sorted struct into the session, so only the initial load for the session is slow (~3-5s avg). (also not using application scope because these are session specific values already and i don't need a bunch of crazy locking) – davidosomething Jun 15 '10 at 0:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.