-
In c2me-fabric-mc1.20.4-0.2.0+alpha.11.62, the In 1.20.4, the default value is 5, while in 1.19.2, it's 2. What does Is there any relation between the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It controls the thread allocations and usually directly affects the thread count used by C2ME.
In 1.20.4 we introduced more optimizations and stability fixes, and we feel confident to make the thread allocation less conservative with these optimizations.
A value too high may make the game run out of memory or may make other tasks (such as rendering the game on your screen) slower. A value too low will make world generation and loading slower.
It is generally recommended to stick with the default provided by the version you are using unless you would like to tune the settings.
No. They are completely different. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your detailed answer! |
Beta Was this translation helpful? Give feedback.
It controls the thread allocations and usually directly affects the thread count used by C2ME.
In 1.20.4 we introduced more optimizations and stability fixes, and we feel confident to make the thread allocation less conservative with these optimizations.
This default is calculated based on memory allocated to the game, the CPU thread count of the host, the OS and more.
A value too high may make the game run out of…