Merge branch 'master' of https://github.com/gcasanova/tutorials into gcasanova-master

This commit is contained in:
Zeger Hendrikse 2016-07-08 01:20:12 +02:00
commit 16a9492017
1 changed files with 23 additions and 23 deletions

View File

@ -191,10 +191,10 @@ public class JedisTest {
public void givenAPoolConfigurationThenCreateAJedisPool() { public void givenAPoolConfigurationThenCreateAJedisPool() {
final JedisPoolConfig poolConfig = buildPoolConfig(); final JedisPoolConfig poolConfig = buildPoolConfig();
try (JedisPool jedisPool = new JedisPool(poolConfig, "localhost"); try (JedisPool jedisPool = new JedisPool(poolConfig, "localhost"); Jedis jedis = jedisPool.getResource()) {
Jedis jedis = jedisPool.getResource()) {
// do simple operation to verify that the Jedis resource is working properly // do simple operation to verify that the Jedis resource is working
// properly
String key = "key"; String key = "key";
String value = "value"; String value = "value";