Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix: properly remove event listeners for memory leak prevention #5281

Closed
wants to merge 1 commit into from
Closed

Conversation

ludinov
Copy link

@ludinov ludinov commented Dec 4, 2013

This PR is just to show buggy code, and possible fix related to #5270
The final code should be at least re-factored a bit and correspondent tests should be added.
I'll not be able to do right PR for now...

@mary-poppins
Copy link

Thanks for the PR!

  • Contributor signed CLA now or in the past
    • If you just signed, leave a comment here with your real name
  • PR's commit messages follow the commit message format

If you need to make changes to your pull request, you can update the commit with git commit --amend.
Then, update the pull request with git push -f.

Thanks again for your help!

@IgorMinar
Copy link
Contributor

I'm sorry, but I wasn't able to verify your CLA signature. CLA signature is required for any code contributions to AngularJS.

Please sign our CLA and ensure that the CLA signature email address and the email address in this PR's commits match.

If you signed the CLA as a corporation, please let me know the company's name.

Thanks a bunch!

PS: If you signed the CLA in the past then most likely the email addresses don't match. Please sign the CLA again or update the email address in the commit of this PR.
PS2: If you are a Googler, please sign the CLA as well to simplify the CLA verification process.

@ludinov
Copy link
Author

ludinov commented Dec 8, 2013

  1. CLA signed, but I don't expect this draft code will be accepted.
  2. Failure examples updated - http://jsfiddle.net/VmTsD/2/
  3. Looks like eventHandler.elem = element; doesn't cause leaks (at least in Chrome)..

@ghost ghost assigned btford Dec 9, 2013
@GabrielDelepine
Copy link

+1

@btford
Copy link
Contributor

btford commented Dec 19, 2013

After some investigation, this isn't actually an issue. As the node is cleaned up, the handler function is removed. Removing it when there are no events potentially creates unnecessary GC pressure if you add/remove listeners.

@ludinov
Copy link
Author

ludinov commented Dec 20, 2013

Maybe it's not a critical issue for modern js engines in terms of memory. But is it the reason to don't fix wrong code? Now lines # 218 & # 224 actually do nothing. I'm not sure about GC pressure, but jQuery for example (not lite) remove listeners properly. And now it is hard to find the reall app problem when you see a lot of unreleased garbage from angular core.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants