3 Comments

  1. MarijnIsN00B on

    You don’t need to install anything. In your launcher of choice, add -XX:+UseZGC to the launch arguments

    You can find on google where to add it in your launcher of choice, it’s slightly different for all of them

  2. Garbage collector is a thing that helps your program (Minecraft in this case) manage ram

  3. FirexJkxFire on

    Someone already answered how to install it, but I figured ill explain what it is

    Garbage collector is something that collects garbage(old and no longer relevant)data and disposes of it so your processing power goes only to necessary data.

    With improper garbage collecting you can have hiccups where the game freezes while the garbage collector does their job. Or in other cases the game runs slower and slower as the garbage just piles up because the garbage collector can’t find some of it. This case is called a memory leak