Hi,
I'm using Magma r42 on Pharo 1.0 and I have this situation:
 
"2356 Cities"
Time millisecondsToRun: [mySession root states first cities do: [:each |  Transcript show: each]]  "16178 milliseconds"
 
mySession root answer a singleton that have 23 states and the first state has 2356 cities. Is 16178 milliseconds the expected time for accessing to it?
 
states and cities are OrderedCollection instances. Must I change it to MagmaCollection for better performance?
 
Thanks,
Facundo