Javascript and Garbage collection

后端 未结 6 570
不思量自难忘°
不思量自难忘° 2020-11-28 04:19

Is there any way to control when Javascript performs garbage collection? I would like to enable it to perform garbage collection at certain times to ensure the smooth operat

相关标签:
6条回答
  • 2020-11-28 04:23

    Unfortunately, there is no way to control WHEN the garbage collection takes place but with the proper formation of objects, you CAN control how quickly and cleanly it happens. Take a look at these documents on Mozilla Dev Net.

    This algorithm assumes the knowledge of a set of objects called roots (In JavaScript, the root is the global object). Periodically, the garbage-collector will start from these roots, find all objects that are referenced from these roots, then all objects referenced from these, etc. Starting from the roots, the garbage collector will thus find all reachable objects and collect all non-reachable objects.

    This algorithm is better than the previous one since "an object has zero reference" leads to this object being unreachable. The opposite is not true as we have seen with cycles.

    0 讨论(0)
  • 2020-11-28 04:24

    JavaScript is a garbage-collected language, meaning that the execution environment is responsible for managing the memory required during code execution. The most popular form of garbage collection for JavaScript is called mark-and-sweep. A second, less-popular type of garbage collection is reference counting. The idea is that every value keeps track of how many references are made to it

    GC follows these algo, even if you manage to trigger the GC, it will not be guaranteed that it will run immediately, you are only marking it

    0 讨论(0)
  • 2020-11-28 04:27

    garbage collection (GC) is a form of automatic memory management by removing the objects that no needed anymore.

    any process deal with memory follow these steps:

    1 - allocate your memory space you need

    2 - do some processing

    3 - free this memory space

    there are two main algorithm used to detect which objects no needed anymore.

    Reference-counting garbage collection: this algorithm reduces the definition of "an object is not needed anymore" to "an object has no other object referencing to it", the object will removed if no reference point to it

    Mark-and-sweep algorithm: connect each objects to root source. any object doesn't connect to root or other object. this object will be removed.

    currently most modern browsers using the second algorithm.

    0 讨论(0)
  • 2020-11-28 04:36

    Why not keep references to all your objects until you want them to be GC'd?

    var delayed_gc_objects = [];
    function delayGC(obj) { // keeps reference alive
        return delayed_gc_objects[delayed_gc_objects.length] = obj;
    }
    function resumeGC() { // kills references, letting them be GCd
        delayed_gc_objects.length = 0;
    }
    
    0 讨论(0)
  • 2020-11-28 04:41

    you can perform some changes to improve your memory use, like:

    1. don't set variables on loops
    2. avoid using of global variables and functions. they will take a piece of memory until you get out
    0 讨论(0)
  • 2020-11-28 04:44

    Javascript doesn't have explicit memory management, it's the browser which decides when to clean it up. Sometimes it may happen that you experience un-smooth rendering of JavaScript due to a garbage collection pause.

    There are many techniques that you can apply to overcome glitches caused by garbage collection (GC). More you apply more you explore. Suppose you have a game written in JavaScript , and every second you are creating a new object then its obvious that at after certain amount of time GC will occur to make further space for your application.

    For real time application like games, which requires lot of space the simplest thing you can do is to reuse the same memory. It depends on you how you structure your code. If it generates lots of garbage then it might give choppy experience.

    By using simple procedures: This is well know that new keyword indicates allocation. Wherever possible you can try to reuse the same object by each time by adding or modifying properties. This is also called recycling of object

    In case of Arrays, assigning [] is often used to clear array, but you should keep in mind that it also creates a new array and garbages the old one. To reuse the same block you should use arr.length = 0 This has the same effect but it reuses the same array object instead of creating new one.

    In case of functions: Sometimes our program needed to call a specific function more time or on certain intervals by using setInterval or setTimeout.

    ex: setTimeout(function() { doSomething() }, 10);
    

    You can optimize the above code by assigning the function to a permanent variable rather than spawning each time at regular intervals.

        ex : var myfunc = function() { doSomething() }
        setTimeout(myfunc, 10);
    

    Other possible thing is that, the array slice() method returns a new array (based on a range in the original array,that can remain untouched), string's substr also returns a new string (based on a range of characters in the original string, that can remain untouched), and so on. Calling these functions creates garbage if not reutilized properly.

    To avoid garbage completely in JavaScript is very difficult, you could say impossible. Its depends, how you reuse the objects and variables to avoid garbage. If your code is well structured and optimized you can minimize the overhead.

    0 讨论(0)
提交回复
热议问题