We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61174d1 commit 1fd9263Copy full SHA for 1fd9263
src/com/danga/MemCached/test/UnitTests.java
@@ -166,6 +166,13 @@ public static void main(String[] args) {
166
// initialize the pool for memcache servers
167
SockIOPool pool = SockIOPool.getInstance( "test" );
168
pool.setServers( serverlist );
169
+ pool.setSocketConnectTO( 500 );
170
+ pool.setInitConn( 10 );
171
+ pool.setMinConn( 5 );
172
+ pool.setMaxConn( 250 );
173
+ pool.setMaintSleep( 30 );
174
+ pool.setNagle( false );
175
+ pool.setSocketTO( 3000 );
176
pool.initialize();
177
178
mc = new MemCachedClient();
0 commit comments