を使用する次のコードがありますPoolingClientConnectionManager
。
public static void main(String[] args) {
int NoOfSimultaneousRequest = 1000;
int poolsize =1000;
try{
if (poolsize>0){
mgr = new PoolingClientConnectionManager();
mgr.setMaxTotal(poolsize);
mgr.setDefaultMaxPerRoute(poolsize);
httpclient = new DefaultHttpClient(mgr);
}
Thread [] tr = new Thread[NoOfSimultaneousRequest];
for(int i=0;i<NoOfSimultaneousRequest;i++){
MultipleThreadsTest multiTest = new MultipleThreadsTest();
Thread t = new Thread(multiTest);
tr[i] = new Thread(multiTest);
}
for(int i=0;i<NoOfSimultaneousRequest;i++){
tr[i].start();
}
for(int i=0;i<NoOfSimultaneousRequest;i++){
tr[i].join();
}
}catch (Exception e){
e.printStackTrace();
}finally{
if (mgr!=null){
mgr.shutdown();
}
if (httpclient!=null){
httpclient.getConnectionManager().shutdown();
}
}
}
public void run() {
if (mgr==null){ //if no connection manager then create multiple instances of defaulthttpClient
HttpClient hc = new DefaultHttpClient();
response = invokeWebService(hc,"http://urltoPost") ;
}else{ //if connection manager is used then use only one instance of httpclient
response = invokeWebService(httpclient,"http://urltoPost") ;
}
}
private static String invokeWebService(HttpClient httpClient,String url){
HttpPost httpPost = new HttpPost(new URI(url));
try{
String response = httpClient.execute(httpPost,new BasicResponseHandler());
return response;
}catch(Exception e){
}finally{
if (httpPost != null) {
httpPost.releaseConnection();
}
}
}
私の問題は、プーリングをオフにすると (<= 0 に設定して)、プーリングがオン ( > 0)poolSize
の場合に比べてコードの実行速度が大幅に速くなることです。poolSize
これら 2 つのバージョンの唯一の違いは、プーリングを使用している場合は のインスタンスが 1 つしかHttpClient
作成されず (Apache が推奨)、プーリングがオフの場合は の複数のインスタンスHttpClient
が作成されることです。HTTP 接続プールを使用すると、コードのパフォーマンスが向上するはずです。しかし、それは起こっていません。接続マネージャーの使用に問題はありますか?