From: Todd Benson Date: 2008-03-29T20:30:55+09:00 Subject: Re: Help on best way to gather/sort results ? On Sat, Mar 29, 2008 at 1:55 AM, Tony De wrote: > > Oooooooo! We'll that makes perfect sense. Thanks! You know, sometimes > you read your handy pickaxe or a blog somewhere, buy it slides right > past you. I appreciate the clarification. > > tonyd They all work. I use #sort_by all the time for legibility, and I don't care that much about speed for the stuff I work on. According to the docs, sort_by doesn't scale by speed for small key sets and large populations (that might be your case). It does, however, perform better when there occurs object creation for the comparison test. Todd