This commit is contained in:
Looly
2020-05-25 16:04:33 +08:00
parent b90602746d
commit 4451a8451d
4 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
package cn.hutool.db.nosql;
import cn.hutool.db.nosql.redis.RedisDS;
import org.junit.Ignore;
import org.junit.Test;
import redis.clients.jedis.Jedis;
public class RedisDSTest {
@Test
@Ignore
public void redisDSTest(){
final Jedis jedis = RedisDS.create().getJedis();
}
}

View File

@@ -18,7 +18,7 @@ connectionTimeout = 2000
# 读取超时默认timeout
soTimeout = 2000
# 密码,默认无
password =
#password =
# 数据库序号默认0
database = 0
# 客户端名,默认"Hutool"