ActioScript 3 Vector / Array Performance Comparison
In my original post on the new Flash Player 10 Vector class, I did a simple example that showed Vectors being slightly faster than Array when just populating and looping through collections.
Below is another example that shows a more significant performance increase when using Vectors. In this example, I populate an Array and Vector with 5 million random numbers, and then loop through them and average all of the numbers.
Running the test on my MacBook Pro, the Vector is about 60% faster:
Vector 1.824
Array 2.938
62.08 %
Here is the code:
package {
import flash.display.Sprite;
import __AS3__.vec.Vector;
public class VectorPerformance extends Sprite
{
private static const LENGTH:int = 5000000;
public function VectorPerformance()
{
//vector performance
var vectorStartTime:Number = getTime();
var v:Vector.<Number> = generateVector();
var vAvg:Number = averageVector(v);
var vectorTime:Number = (getTime() - vectorStartTime) / 1000;
//array performance
var arrayStartTime:Number = getTime();
var a:Array = generateArray();
var aAvg:Number = averageArray(a);
var arrayTime:Number = (getTime() - arrayStartTime) / 1000;
trace("Vector", vectorTime);
trace("Array", arrayTime);
trace((vectorTime/arrayTime) * 100 + " %");
}
private function generateVector():Vector.<Number>
{
var v:Vector.<Number> = new Vector.<Number>(LENGTH, true);
for(var i:int = 0; i < LENGTH; i++)
{
v[i] = Math.random() * 100000;
}
return v;
}
private function averageVector(v:Vector.<Number>):Number
{
var sum:Number = 0;
var len:int = v.length;
for(var i:int = 0; i < LENGTH; i++)
{
sum += v[i];
}
return (sum / len);
}
private function generateArray():Array
{
var a:Array = new Array(LENGTH);
for(var i:int = 0; i < LENGTH; i++)
{
a[i] = Math.random() * 100000;
}
return a;
}
private function averageArray(arr:Array):Number
{
var sum:Number = 0;
var len:int = arr.length;
for(var i:int = 0; i < LENGTH; i++)
{
sum += arr[i];
}
return (sum / len);
}
private function getTime():Number
{
return (new Date()).getTime();
}
}
}
Of course, this is only one test. Depending on what you are doing, Vectors may be even faster, or slower.
One interesting note, originally my test had each collection sorted before they were averaged, but it turned out that sorting Vector was slower than sorting the Array. Not sure if this is a bug, but I have reported it to the player team.






40% faster :)
magicwind
24 Sep 08 at 6:27 pm
[...] Chambers has posted a comparison between the performance of AS3 arrays and the new Vectors available in Flash Player 10. The results [...]
Actionscript 3 vector speedups » CleVR » Panoramic photography and image stitching blog
25 Sep 08 at 2:02 am
How generics used with vector affects the test?
radekg
25 Sep 08 at 11:59 am
[...] Aqui el codigo fuente [...]
Hidden Place Blog » Blog Archive » Comparacion de rendimiento entre Vector y Array en AS3
26 Sep 08 at 6:25 am
Why my vector use source is need more memory?
private var vector:Vector. = new Vector.;
private var array:Array = new Array();
private function init():void
{
var start:Number = new Date().getTime();
for(var i:Number = 0 ; i < 5000000 ; i++)
{
array[i] = Math.random() * Math.PI * 100000;
//vector[i] = Math.random() * Math.PI * 100000;
}
trace(System.totalMemory);
trace(new Date().getTime() – start);
}
Vector
71843840
2782
Array
15237120
2859
mash
30 Sep 08 at 10:40 pm
[...] reports have been coming in across the web of performance increase anywhere between 40% to 60% (AS3 Vector / Array Performance Comparison). However, this is one small step for the platform as a whole as with some of the benchmarks I have [...]
Beyond Flash 10 and AS3 | JADBOX: Web Application Musings
3 Oct 08 at 7:43 am
Are there built-in comparators for sorting Vectors in Flash Player 10? I need to alphabetically sort a Vector based on the return value of a method.
TK
24 Oct 08 at 5:24 pm
[...] Vector is an interesting idea. It adds type-safe collections to ActionScript, and it provides a pretty dramatic speed increase since it side-steps things like type-checking. But Vector does not provide a generic typing [...]
Marking Occurrences » Listen to me rant about ActionScript, part 2
8 Dec 08 at 11:22 pm
Just ran across an interesting performance comparison tool that shows Vectors as 60x faster when looping through them.
http://businessintelligence.me/projects/performance_tester/performanceTester.html
PS: Actio script?
Mims H. Wright
17 Dec 08 at 11:40 am
[...] ActioScript 3 Vector / Array Performance Comparison [...]
AS3 Vector vs Array Speed Test « Strings And Wires
15 Feb 09 at 3:29 am
[...] with an Array which holds all the same DataType. Vectors are approximately 40% faster according to Mike Chambers to Arrays. When dealing with a large Array that is the same type, use a Vector. Also note that [...]
Cool Flash Tip of the Week #3 | kreativeKING - Interactive Developer
10 Jun 09 at 11:41 am