I ran the following code thru fprof using N=1000 for Mod=dict and Mod=rbdict. The basic results were that rbdict was ~10-20ms slower than dict for both store and fetch.<br><br>store(Mod, N) -><br>    Fold = fun(I, D) -> Mod:store(I, I, D) end,<br>
    lists:foldl(Fold, Mod:new(), lists:seq(1, N)).<br><br>fetch(Mod, N, Dict) -><br>    Map = fun(I) -> Mod:fetch(I, Dict) end,<br>    lists:map(Map, lists:seq(1, N)).<br><br><br>Jacob<br>