Jump to content

Forge Using too much RAM


Jake1702

Recommended Posts

Hello there. I am having a problem with Forge 1.8. I have only few mods installed and it says 6 when I start it. (Including what comes with Forge.) However, it can go up to using 1GB of RAM or more. Now, I know mods can use a lot more than Vanilla Minecraft, but my PC only has 4GB of RAM. (Upgraded from 2GB a couple months ago.) Is there any way to make it use a bit less RAM while not affecting performance too much? If not, it's fine, I'll just try to close as much stuff as I can when I need to run it. Thanks in advance! :)

Link to comment
Share on other sites

 

ya is true forge 1.8 is heavyer than forge a 1.7  as 1.7 was heavier than 1.6

i been sufering the struggle coz i have a low profile pc and play minecraft from the 1.64 i have tto make upgrades from time to time to play

 

some mods are especialy heavy mi mod is a heavy one and du not know exactly why.

i notice an increase in the memory usage in forge that happens from the forge version 1521

the last one i found whithout this memory "feature" is the forge-1.8-11.14.3.1520-mdk

if i use mi mod in 1520 works just fine but if i use it in a newer the game becomes laggy even if i set 4gigas the ram to minecraft profile

Link to comment
Share on other sites

Well considering 1521 was this change: https://github.com/MinecraftForge/MinecraftForge/commit/b312584ca4ada008c0551b7e780eb6e35d4abb42

It's literally impossible that that caused significant memory usage. In fact it actually DECREASED RAM usage becuase it doesn't have to load those classes in the class loader.

 

So, 99% sure that its your mod that is broken NOT Forge. If you DO have memory issues that you can reproduce on the current forge and ONLY with Forge  {or with a specifically designed mod that is not the cause itself but exposes the cause in Forge} then bring them up. But as stated many times, 1.8 actually increased performance and decreased RAM usage in the modded world.

 

Going to lock this now as we're going in circles and neither of you are supplying any actual evidence.

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Post logs as per https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/ They may have information that will answer these questions.
    • I was left reeling when a glitch on a cryptocurrency exchange caused me to lose $166,000 worth of my hard-earned savings. It felt like my entire world had crumbled in the blink of an eye, leaving me with a sense of hopelessness. Determined not to give up, I delved into research on recovery options, unsure of what to expect. That's when I stumbled upon I was left reeling when a glitch on a cryptocurrency exchange caused me to lose $166,000 worth of my hard-earned savings. It felt like my entire world had crumbled in the blink of an eye, leaving me with a sense of hopelessness. Determined not to give up, I delved into research on recovery options, unsure of what to expect. That's when I stumbled upon DIGITAL HACK RECOVERY, a beacon of hope in my darkest hour. Despite my initial doubts, I decided to take a leap of faith and give them a shot as a final lifeline. The experts at DIGITAL HACK RECOVERY proved to be masters of their craft, guiding me through their exclusive process with precision and expertise. Utilizing cutting-edge blockchain analysis methods, they were able to track down the elusive trail of my missing funds and identify the exact point of failure. Their forensic talents were unparalleled as they tirelessly combed through the intricate web of blockchain data to locate my cryptocurrency. With each step they took, they kept me informed of their progress, never wavering in their belief that my funds could be rescued. After several painstaking weeks, DIGITAL HACK RECOVERY finally located and restored my $166,000 worth of cryptocurrency. I was awestruck that they were able to salvage what I had thought was lost forever. The whole experience restored my faith in the crypto space and proved that even in the worst situations, recovery is possible with the right experts on your side. I will be forever grateful to DIGITAL HACK RECOVERY for giving me back my life savings when I needed it most. Their tireless efforts and technical mastery turned what could have been a devastating loss into an uplifting success story. Book a time with DIGITAL HACK RECOVERY through: digital hack recovery @ techie . com &  +12018871705
    • public class ParticleReboundRecipe implements Recipe<CraftingContainer> { private List<ParticleReboundIngredient> inputs; private ParticleReboundFuel fuel; private ItemStack output; public ParticleReboundRecipe(List<ParticleReboundIngredient> inputs, ParticleReboundFuel fuel, ItemStack output) { this.inputs = inputs; this.fuel = fuel; this.output = output; } // TODO: Implement interface ... // TODO: Move to separate file if desired public record ParticleReboundIngredient(Ingredient ingredient, int count) { public static final Codec<ParticleReboundIngredient> CODEC = RecordCodecBuilder.create( builder -> builder.group( Ingredient.CODEC.fieldOf("ingredient").forGetter((i) -> i.ingredient), Codec.INT.fieldOf("count").forGetter(i -> i.count) ).apply(builder, ParticleReboundIngredient::new) ); } // TODO: Move to separate file if desired public record ParticleReboundFuel(String tag) { public static final Codec<ParticleReboundFuel> CODEC = RecordCodecBuilder.create( builder -> builder.group(Codec.STRING.fieldOf("tag").forGetter(f -> f.tag)).apply(builder, ParticleReboundFuel::new) ); public boolean isFuel(ItemStack stack) { // TODO: Check if fuel item matches the tag } } public class Serializer implements RecipeSerializer<ParticleReboundRecipe> { public static final Codec<ParticleReboundRecipe> CODEC = RecordCodecBuilder.create( builder -> builder.group( ParticleReboundIngredient.CODEC.listOf().fieldOf("inputs").forGetter(r -> r.inputs), ParticleReboundFuel.CODEC.fieldOf("fuel").forGetter(r -> r.fuel), ItemStack.CODEC.fieldOf("output").forGetter(r -> r.output) ).apply(builder, ParticleReboundRecipe::new) ); @Override public @NotNull Codec<ParticleReboundRecipe> codec() { return CODEC; } // TODO: The rest ... } }   ?
    • I'm sure load and SaveAdditional are what you are looking for, probably. Mind sharing your BE class code? You also need to override onLoad method if you haven't
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.