Pending Transaction - save in external datasource

This commit is contained in:
eugene-shevchenko 2015-03-27 12:59:54 +02:00
parent a5ca9cffd0
commit 339b0e57e4
1 changed files with 0 additions and 14 deletions

View File

@ -35,20 +35,6 @@ public class RedisDataSourceTest extends AbstractRedisTest {
}
}
@Test
public void test() {
try {
Jedis jedis = new Jedis(new URI(System.getenv(RedisConnection.REDISCLOUD_URL)));
Long count = jedis.sinterstore("f", "f", "s");
System.out.println(count);
Set<String> r = jedis.smembers("f");
System.out.println(r);
} catch (URISyntaxException e) {
e.printStackTrace();
}
}
@Test
public void testSet2() {
if (!isConnected()) return;