Status: New
Owner: ----
New issue 3611 by [email protected]: Adding a new object property is
very slow
https://code.google.com/p/v8/issues/detail?id=3611
The following three quite similar scenarios have very different performance:
var map = {a: 0}; # Case A
map.a = 'a';
var map = {}; # Case B
map.a = 'a';
var map = { a: 'a' }; # Case C
map.a = 'a';
Even though the result is identical, case A (!) is fastest,
closely followed by C, with B coming at a serious distance.
Case A appears to have gotten worse from Chrome 37 to 40.
With other engines, the performance of all cases is highly similar:
http://jsperf.com/unknown-hash-key/2
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.