|
@@ -4,7 +4,6 @@ import com.incubator.game.GGame;
|
|
|
import org.slf4j.Logger;
|
|
|
import com.incubator.common.log4j.Log4jUtil;
|
|
|
import com.incubator.common.util.PropertiesUtil;
|
|
|
-
|
|
|
import redis.clients.jedis.Jedis;
|
|
|
import redis.clients.jedis.JedisPool;
|
|
|
import redis.clients.jedis.JedisPoolConfig;
|
|
@@ -21,6 +20,8 @@ public final class JedisPoolUtil {
|
|
|
|
|
|
private static int TIMEOUT;
|
|
|
|
|
|
+ private static int DEFAULT_DB = 0; // 默认 Redis 数据库为 0
|
|
|
+
|
|
|
static {
|
|
|
if (jedisPool == null) {
|
|
|
try {
|
|
@@ -56,6 +57,9 @@ public final class JedisPoolUtil {
|
|
|
ADDR_ARRAY = dbredis.getProperty("redis.host");
|
|
|
PORT = Integer.parseInt(dbredis.getProperty("redis.port"));
|
|
|
TIMEOUT = Integer.parseInt(dbredis.getProperty("redis.timeout"));
|
|
|
+ if (dbredis.getProperty("redis.db") != null) {
|
|
|
+ DEFAULT_DB = Integer.parseInt(dbredis.getProperty("redis.db"));
|
|
|
+ }
|
|
|
if (dbredis.getProperty("redis.auth") != null) {
|
|
|
String AUTH = dbredis.getProperty("redis.auth");
|
|
|
jedisPool = new JedisPool(config, ADDR_ARRAY, PORT, TIMEOUT, AUTH);
|
|
@@ -64,14 +68,27 @@ public final class JedisPoolUtil {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取 Jedis 实例并指定数据库
|
|
|
+ */
|
|
|
public synchronized static Jedis getJedis() {
|
|
|
- return jedisPool.getResource();
|
|
|
+ Jedis jedis = jedisPool.getResource();
|
|
|
+ try {
|
|
|
+ if (DEFAULT_DB != 0) {
|
|
|
+ jedis.select(DEFAULT_DB); // 切换到指定的 Redis 数据库
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ logger.error("Failed to select Redis database: " + DEFAULT_DB, e);
|
|
|
+ }
|
|
|
+ return jedis;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 关闭 Jedis 连接
|
|
|
+ */
|
|
|
public static void closeJedis(Jedis jedis) {
|
|
|
if (jedis != null) {
|
|
|
jedis.close();
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|