Optimizing Erlang: Array vs Tuple
This is the first in my series of posts on optimizing Erlang. I plan to tackle optimizing Mnesia, profiling and scalability.
You need to use arrays of up to 10,000 elements. Erlang offers you tuples as well as fixed-size and extensible pseudo-arrays. What is the fastest option?Let us start the death match by pitting arrays against tuples in a death match. Trees were an option before the array module became available, so lets throw in trees just for laughs.I'm running Mac OSX Leopard 10.5.4 on a Mac Pro 2x2.8Ghz Quad-Core Intel Xeon with 14Gb 800Mhz DDR2 FB-DIMM.Erlang (BEAM) emulator version 5.6.3 [source] [64-bit] [smp:8] [async-threads:0] [kernel-poll:false] 27> arr:test(). Fixed-size array: get: 2921us, set: 5902us Extensible array: get: 3336us, set: 8144us Tuple: get: 632us, set: 107467us Tree: get: 4321us, set: 45256us ok 30> arr:test(100000). Fixed-size array: get: 35314us, set: 74653us Extensible array: get: 35349us, set: 74059us Tuple: get: 6411us, set: 24304490us Tree: get: 53681us, set: 632795us okNote that timer:tc returns time in microseconds. I ran each test 3 times and the results above are from the third iteration.Trees in Erlang (gb_trees) are built on top of regular tuples and so is the array module. The array module is much more efficient about using tuples than a regular tree, though, and this is the reason why it's so much faster.The tuple test pre-allocates a tuple of 10k or 100k elements. There's no destructive assignment in Erlang and so the same large tuple needs to be allocated and discarded on every set operation. It's very inefficient to allocate and discard a large tuple on every set operation, thus naive tuple set is very slow.The array module uses an efficient tree-like internal representation:
%% A tree is either a leaf, with LEAFSIZE elements (the "base"), an %% internal node with LEAFSIZE+1 elements, or an unexpanded tree, %% represented by a single integer: the number of elements that may be %% stored in the tree when it is expanded. The last element of an %% internal node caches the number of elements that may be stored in %% each of its subtrees. %% %% Note that to update an entry in a tree of height h = log[b] n, the %% total number of written words is (b+1)+(h-1)*(b+2), since tuples use %% a header word on the heap. 4 is the optimal base for minimizing the %% number of words written, but causes higher trees, which takes time. %% The best compromise between speed and memory usage seems to lie %% around 8-10. Measurements indicate that the optimum base for speed is %% 24 - above that, it gets slower again due to the high memory usage. %% Base 10 is a good choice, giving 2/3 of the possible speedup from %% base 4, but only using 1/3 more memory. (Base 24 uses 65% more memory %% per write than base 10, but the speedup is only 21%.)It's far more efficient to allocate small tuples on every set and this is why the array module wins hands down. Use the code below to replicate my results on your hardware.

