new JRedisServiceBenchmark(poolCnt, host, port, db, password).runBenchmarks (host, port, workerCnt, reqCnt, size, db);
}
final JRedis jredisService;
public JRedisServiceBenchmark (int poolCnt, String host, int port, int db, String password) {
ConnectionSpec connectionSpec = DefaultConnectionSpec.newSpec("localhost", 6379, db, "jredis".getBytes());
jredisService = new JRedisService(connectionSpec, poolCnt);
super.quitOnRunEnd(false);
}