-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move _p2t_edge_list into a WeakMap on the SweepContext #7
base: master
Are you sure you want to change the base?
Conversation
…o a WeakMap on the SweepContext. This prevents creating a new hidden class when using a custom Point class, and allows for the edge lists to be garbage collected up with the SweepContext.
Thanks for the patch. However, the current proposal has a significant performance impact compared to previous versions (between -30% and -35% on my test machine, using There should also be a test case to check that points are not modified, depending on the option. |
So I'm not sure the benchmark reflects actual usage. The If you replace this line in makePoints() in benchmark.js (in master):
with:
Then the performance is pretty much the same as with my change for me. If you do:
Then you get back that performance boost. In the case of enabling the option to use a WeakMap, how terrible would it be to do something like this?
My main issue is that when you're holding onto 2-3 million points, every extra property removed starts to make a difference. |
Actually, it would probably make more sense to accept a point factory with a default one if none is given. |
I ran the benchmark again, as per your suggestion, and found that benchmark with Still thinking about a good solution with all constraints. |
My thoughts so far:
From 1. :
From 2. : |
upgrade browserify, jasmine, karma to fix failures in 2017
…rameter in the SweepContext constructor.
…ow. Needed so that it can be changed during testing.
Thanks. Thinking about this discussion, we have 2 different issues :
I have no solution for 1. for the time being. |
The only GC issue I saw was that Edge objects were being tacked on to my application's Point objects, which live for a long time. For me, the SweepContext has a short life time. If all of the objects are only referenced by it, then everything should get GC'd with it. |
When WeakMap is available, push the _p2t_edge_list Point property into a WeakMap on the SweepContext. This prevents creating a new hidden class when using a custom Point class, and allows for the edge lists to be garbage collected up with the SweepContext.
The basic functionality of WeakMap is supported by pretty much everything. However, it is not supported by PhantomJS, so the current behaviour of adding _p2t_edge_list to Points is maintained if WeakMap is not available.