Revert "Slow down queue a bit because 1.13+ performance is bad"

This reverts commit bbde2f5e06.
This commit is contained in:
dordsor21 2020-05-24 23:24:27 +01:00
parent e32a2e2723
commit 0021b114de
2 changed files with 7 additions and 8 deletions

View File

@ -491,9 +491,9 @@ public class Settings extends Config {
@Comment("Settings relating to PlotSquared's GlobalBlockQueue")
public static final class QUEUE {
@Comment({"Average time per tick spent completing chunk tasks in ms.",
@Comment({"Average time per tick spent completing chunk tasks in ms. Target average TPS = 20 * 50 / TARGET_TIME.",
"Waits (chunk task time / target_time) ticks before completely the next task."})
public static int TARGET_TIME = 40;
public static int TARGET_TIME = 65;
}

View File

@ -57,7 +57,6 @@ public class GlobalBlockQueue {
private final RunnableVal2<Long, LocalBlockQueue> SET_TASK =
new RunnableVal2<Long, LocalBlockQueue>() {
@Override public void run(Long free, LocalBlockQueue queue) {
long t1 = System.currentTimeMillis();
do {
boolean more = queue.next();
if (!more) {
@ -67,9 +66,9 @@ public class GlobalBlockQueue {
}
return;
}
} while (((GlobalBlockQueue.this.secondLast = System.currentTimeMillis())
- GlobalBlockQueue.this.last) < free);
lastPeriod = System.currentTimeMillis() - t1;
} while ((lastPeriod =
((GlobalBlockQueue.this.secondLast = System.currentTimeMillis())
- GlobalBlockQueue.this.last)) < free);
}
};
@ -125,8 +124,8 @@ public class GlobalBlockQueue {
lastPeriod -= targetTime;
return;
}
SET_TASK.value1 = 30 + Math.min(
(30 + GlobalBlockQueue.this.last) - (GlobalBlockQueue.this.last =
SET_TASK.value1 = 50 + Math.min(
(50 + GlobalBlockQueue.this.last) - (GlobalBlockQueue.this.last =
System.currentTimeMillis()),
GlobalBlockQueue.this.secondLast - System.currentTimeMillis());
SET_TASK.value2 = GlobalBlockQueue.this.getNextQueue();