This line data_list = map(key -> get(parm_hash, key, ""), prop_list)
could probably be sped up replacing map with a list comprehension, which would also remove the anonymous function. Both map and anonymous functions are slower than you might hope, so removing them can offer meaningful speedups. -- John On Jun 12, 2014, at 4:12 PM, Rich Morin <[email protected]> wrote: > data_list = map(key -> get(parm_hash, key, ""), prop_list)
