Skip to content

Commit 0923f0e

Browse files
committed
Reduce IdleChannel allocations, close #1462
Motivation: We allocate an AtomicBoolean for every IdleChannel. We can avoid this cost, all the more as we allocate a IdleChannel just to be able to remove it from the partition. Modification: Use an AtomicIntegerFieldUpdater instead. Result: Less allocations caused by IdleChannel.
1 parent 468b98f commit 0923f0e

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

client/src/main/java/org/asynchttpclient/netty/channel/DefaultChannelPool.java

+13-7
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,14 @@
1515

1616
import static org.asynchttpclient.util.Assertions.assertNotNull;
1717
import static org.asynchttpclient.util.DateUtils.unpreciseMillisTime;
18-
import io.netty.channel.Channel;
19-
import io.netty.channel.ChannelId;
20-
import io.netty.util.Timeout;
21-
import io.netty.util.Timer;
22-
import io.netty.util.TimerTask;
2318

2419
import java.net.InetSocketAddress;
2520
import java.util.*;
2621
import java.util.concurrent.ConcurrentHashMap;
2722
import java.util.concurrent.ConcurrentLinkedDeque;
2823
import java.util.concurrent.TimeUnit;
2924
import java.util.concurrent.atomic.AtomicBoolean;
25+
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
3026
import java.util.function.Function;
3127
import java.util.function.Predicate;
3228
import java.util.stream.Collectors;
@@ -36,6 +32,12 @@
3632
import org.slf4j.Logger;
3733
import org.slf4j.LoggerFactory;
3834

35+
import io.netty.channel.Channel;
36+
import io.netty.channel.ChannelId;
37+
import io.netty.util.Timeout;
38+
import io.netty.util.Timer;
39+
import io.netty.util.TimerTask;
40+
3941
/**
4042
* A simple implementation of {@link ChannelPool} based on a {@link java.util.concurrent.ConcurrentHashMap}
4143
*/
@@ -106,17 +108,21 @@ private static final class ChannelCreation {
106108
}
107109

108110
private static final class IdleChannel {
111+
112+
private static final AtomicIntegerFieldUpdater<IdleChannel> ownedField = AtomicIntegerFieldUpdater.newUpdater(IdleChannel.class, "owned");
113+
109114
final Channel channel;
110115
final long start;
111-
final AtomicBoolean owned = new AtomicBoolean(false);
116+
@SuppressWarnings("unused")
117+
private volatile int owned = 0;
112118

113119
IdleChannel(Channel channel, long start) {
114120
this.channel = assertNotNull(channel, "channel");
115121
this.start = start;
116122
}
117123

118124
public boolean takeOwnership() {
119-
return owned.compareAndSet(false, true);
125+
return ownedField.getAndSet(this, 1) == 0;
120126
}
121127

122128
public Channel getChannel() {

0 commit comments

Comments
 (0)