Skip to content
This repository was archived by the owner on Jan 21, 2024. It is now read-only.

Optimize Network Queue (SportPaper-0108) #127

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ See the patches list below.
[SportPaper-0201] Cache block break animation packet
[SportPaper-0203] Fix Teleport Invisibility
[SportPaper-0204] Optimize toLegacyData removing unneeded sanity checks
[SportPaper-0108] Optimize Network Queue

[PaperBin-????] WorldServer#everyoneDeeplySleeping optimization

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package io.papermc.paper.util.linkedqueue;

import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.LongAdder;

public class CachedSizeConcurrentLinkedQueue<E> extends ConcurrentLinkedQueue<E> {
private final LongAdder cachedSize = new LongAdder();

@Override
public boolean add(E e) {
boolean result = super.add(e);
if (result) {
cachedSize.increment();
}
return result;
}

@Override
public E poll() {
E result = super.poll();
if (result != null) {
cachedSize.decrement();
}
return result;
}

@Override
public int size() {
return cachedSize.intValue();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import javax.imageio.ImageIO;

import ga.windpvp.windspigot.random.FastRandom;
import io.papermc.paper.util.linkedqueue.CachedSizeConcurrentLinkedQueue;
import org.apache.commons.lang3.Validate;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
Expand Down Expand Up @@ -122,9 +123,7 @@ public int getServerPort() {
private long X = 0L;
private final GameProfileRepository Y;
private final UserCache Z;
protected final Queue<FutureTask<?>> j = new java.util.concurrent.ConcurrentLinkedQueue<FutureTask<?>>(); // Spigot,
// PAIL:
// Rename
protected final Queue<FutureTask<?>> j = new CachedSizeConcurrentLinkedQueue<>(); // Spigot, PAIL: Rename // Paper - Make size() constant-time
private Thread serverThread;
private long ab = az();

Expand Down