final static int CONCURRENT_CLIENTS = 100;
final static int INCREMENTATION_TIMES = 1000;
@Test
public void a_lot_of_concurrent_incrementing() throws Exception {
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxActive(CONCURRENT_CLIENTS);
JedisPool pool = new JedisPool(config, getRedisHostname());
CountDownLatch startLatch = new CountDownLatch(1);
CountDownLatch completionCounter = new CountDownLatch(CONCURRENT_CLIENTS);