GithubHelp home page GithubHelp logo

Comments (4)

ortuman avatar ortuman commented on July 23, 2024 2

@jorelosorio

Does this can in somehow replace the GC?

Not exactly. Memory arenas are more designed for cases where certain processing can generate a high number of objects that are subsequently discarded. A clear example of this case would be the parsing of a text input. For the rest of the cases, the GC is the way to go.

The main advantage of a memory arena over the GC is that allocating/deallocating memory translates into simply adjusting a memory pointer, without ever having to resort to the heap.

In the future, I plan to add some benchmark examples to validate that indeed the memory arena is more efficient than the GC in these types of scenarios.

from nuke.

ortuman avatar ortuman commented on July 23, 2024 2

@Nuclear6

What is {certain operations}?

Operations in which the lifespan is well delimited, such as a network operation on a server, or rendering a frame in a video game.

For these cases, those objects that are needed during this processing only temporarily can be sent to the memory arena instead of the GC, so they can all be released immediately once the operation has been completed.

from nuke.

jorelosorio avatar jorelosorio commented on July 23, 2024

Would be nice to know more about advantages over garbage collector, if that makes sense. Does this can in somehow replace the GC?

from nuke.

jorelosorio avatar jorelosorio commented on July 23, 2024

@ortuman thanks for clarifications, It more clear, so I will keep on eye on this library to include it on one of my projects.

from nuke.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.