Increase full data update task count to reduce down time

This commit is contained in:
James Seibel
2025-02-06 20:10:30 -06:00
parent 5cebee3be4
commit f7dc46cb55
@@ -68,7 +68,7 @@ public class FullDataSourceProviderV2
private static final Logger LOGGER = DhLoggerBuilder.getLogger();
private static final IMinecraftClientWrapper MC_CLIENT = SingletonInjector.INSTANCE.get(IMinecraftClientWrapper.class);
protected static final int NUMBER_OF_PARENT_UPDATE_TASKS_PER_THREAD = 5;
protected static final int NUMBER_OF_PARENT_UPDATE_TASKS_PER_THREAD = 20;
/** how many parent update tasks can be in the queue at once */
protected static int getMaxUpdateTaskCount() { return NUMBER_OF_PARENT_UPDATE_TASKS_PER_THREAD* Config.Common.MultiThreading.numberOfThreads.get(); }