You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
I found something odd with the Splay benchmark. It create lots and lots of
objects with properties, `array` and `string`, that are never accessed/modified
whose `array` value is also fixed. I think it would better reflect real world
scenarios if the object was created with an `array` property that was not a
fixed value, in other words be more like `string`, and whose properties were
modified in some way.
The snippet I'm referring to is:
return {
array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ],
string : 'String for key ' + tag + ' in leaf node'
};
A basic tweak would be something like:
return {
array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, depth ],
string : 'String for key ' + tag + ' in leaf node'
};
This doesn't cover the modification/access angle but you get the idea.
Original issue reported on code.google.com by John.Dav...@gmail.com on 9 Sep 2014 at 11:39
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
John.Dav...@gmail.com
on 9 Sep 2014 at 11:39The text was updated successfully, but these errors were encountered: