Decrease delay between missing generation rechecks

This commit is contained in:
s809
2025-01-31 14:53:52 +05:00
parent 2c077f5224
commit 157d72d8dc
@@ -510,7 +510,7 @@ public class LodRenderSection implements IDebugRenderable, AutoCloseable
if (this.missingGenerationPosFunc == null)
{
//this.missingGenerationPos = Suppliers.memoize(() -> this.fullDataSourceProvider.getPositionsToRetrieve(this.pos));
this.missingGenerationPosFunc = Suppliers.memoizeWithExpiration(() -> this.fullDataSourceProvider.getPositionsToRetrieve(this.pos), 1, TimeUnit.MINUTES);
this.missingGenerationPosFunc = Suppliers.memoizeWithExpiration(() -> this.fullDataSourceProvider.getPositionsToRetrieve(this.pos), 15, TimeUnit.SECONDS);
}
LongArrayList missingGenerationPos = this.getMissingGenerationPos();