static void oldPool(int c, long reps) throws Exception {
ClientConnectionOperator operator = new DefaultClientConnectionOperator(
SchemeRegistryFactory.createDefault());
ConnPerRoute connPerRoute = new ConnPerRouteBean(c);
ConnPoolByRoute pool = new ConnPoolByRoute(operator, connPerRoute, c * 10);
WorkerThread2[] workers = new WorkerThread2[c];
for (int i = 0; i < workers.length; i++) {
workers[i] = new WorkerThread2(pool, reps);
}