|
|
|
|
|
by vjeux
4352 days ago
|
|
The reason why Mori scales better is because it implements arrays via a tree of 32-slot arrays. So unfortunately, you cannot use normal JavaScript data structures and have to re-implement all the array methods that know how to deal with this data structure. React.addons.update uses normal JavaScript arrays. So it won't scale as well, but at least you get immutability. |
|