*/
public class NioSelectorPool {
- protected int maxSelectors = 100;
+ protected int maxSelectors = 200;
protected int maxSpareSelectors = -1;
protected boolean enabled = true;
protected AtomicInteger active = new AtomicInteger(0);
protected boolean ooBInline = true;
protected boolean soReuseAddress = true;
protected boolean soLingerOn = true;
- protected int soLingerTime = 10;
+ protected int soLingerTime = 25;
protected int soTimeout = 5000;
protected int soTrafficClass = 0x04 | 0x08 | 0x010;
protected int performanceConnectionTime = 1;
- protected int performanceLatency = 1;
+ protected int performanceLatency = 0;
protected int performanceBandwidth = 1;
private Socket properties;