How much does Javascript garbage collection affect performance?
Posted
by Long Ouyang
on Stack Overflow
See other posts from Stack Overflow
or by Long Ouyang
Published on 2010-06-06T19:45:22Z
Indexed on
2010/06/06
19:52 UTC
Read the original article
Hit count: 328
JavaScript
|garbage-collection
I'm writing a bunch of scripts that present images serially (e.g. 1 per second) and require the user to make either a keyboard or mouse response.
I'm using closures to handle the timing of image presentation and user input. This causes garbage collection to happen pretty frequently and I'm wondering if that will affect the performance (viz. timing of image presentation).
© Stack Overflow or respective owner