When comparing the performance of rendering a list using Angular versus other libraries like Handlebars, I noticed about a 10x decrease in speed.
In my case, the table does not need to update dynamically when the model changes. If necessary, I can simply redraw the table upon a button press or similar event trigger.
To see the comparison in action, check out this Plunkr demo: http://plnkr.co/edit/uwaNDVuPN4KvxRovdBfw?p=preview
1.) Am I accurately measuring the timing for angular?
2.) Are there any optimization techniques to enhance the speed of Angular when binding is unnecessary?