Created
January 14, 2010 22:15
-
-
Save spullara/277569 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
findstr TcpNoDelay "*.java" | |
./java/org/apache/hadoop/hbase/ipc/HBaseClient.java:80: protected boolean tcpNoDelay; // if T then disable Nagle's Algorithm | |
./java/org/apache/hadoop/hbase/ipc/HBaseClient.java:305: this.socket.setTcpNoDelay(tcpNoDelay); | |
./java/org/apache/hadoop/hbase/ipc/HBaseClient.java:641: this.tcpNoDelay = conf.getBoolean("hbase.ipc.client.tcpnodelay", false); | |
./java/org/apache/hadoop/hbase/ipc/HBaseServer.java:148: protected final boolean tcpNoDelay; // if T then disable Nagle's Algorithm | |
./java/org/apache/hadoop/hbase/ipc/HBaseServer.java:394: channel.socket().setTcpNoDelay(tcpNoDelay); | |
./java/org/apache/hadoop/hbase/ipc/HBaseServer.java:1002: this.tcpNoDelay = conf.getBoolean("ipc.server.tcpnodelay", false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment