2021-01-03 07:21:15 +00:00
|
|
|
package dev.plex.storage;
|
2020-10-27 20:12:38 +00:00
|
|
|
|
2022-02-04 08:18:07 +00:00
|
|
|
import dev.plex.PlexBase;
|
|
|
|
import dev.plex.util.PlexLog;
|
2020-10-27 20:12:38 +00:00
|
|
|
import redis.clients.jedis.Jedis;
|
|
|
|
|
2022-02-04 08:18:07 +00:00
|
|
|
public class RedisConnection extends PlexBase
|
2020-10-27 20:12:38 +00:00
|
|
|
{
|
|
|
|
private Jedis jedis;
|
|
|
|
|
2022-02-04 19:30:05 +00:00
|
|
|
/*public JedisPool openPool()
|
2020-10-27 20:12:38 +00:00
|
|
|
{
|
2022-02-04 19:30:05 +00:00
|
|
|
JedisPoolConfig jedisConfig = new JedisPoolConfig();
|
|
|
|
//jedisConfig.setMaxIdle(10);
|
|
|
|
//jedisConfig.setMaxTotal(100);
|
2020-10-27 20:12:38 +00:00
|
|
|
ClassLoader previous = Thread.currentThread().getContextClassLoader();
|
|
|
|
Thread.currentThread().setContextClassLoader(RedisConnection.class.getClassLoader());
|
2022-02-04 19:30:05 +00:00
|
|
|
this.pool = new JedisPool(jedisConfig, plugin.config.getString("data.side.hostname"),
|
|
|
|
plugin.config.getInt("data.side.port"));
|
2020-10-27 20:12:38 +00:00
|
|
|
Thread.currentThread().setContextClassLoader(previous);
|
2022-02-04 08:18:07 +00:00
|
|
|
PlexLog.log("Connected to Redis!");
|
2020-10-27 20:12:38 +00:00
|
|
|
return pool;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Jedis getJedis()
|
|
|
|
{
|
2022-02-04 19:30:05 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
this.jedis = pool.getResource();
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
PlexLog.error("An error occurred with Redis.");
|
|
|
|
ex.printStackTrace();
|
|
|
|
}
|
2022-02-04 08:18:07 +00:00
|
|
|
if (plugin.config.getBoolean("data.side.auth"))
|
2020-10-27 20:12:38 +00:00
|
|
|
{
|
2022-02-04 08:18:07 +00:00
|
|
|
jedis.auth(plugin.config.getString("data.side.password"));
|
2020-10-27 20:12:38 +00:00
|
|
|
}
|
|
|
|
return jedis;
|
2022-02-04 19:30:05 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
public Jedis getJedis()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
jedis = new Jedis(plugin.config.getString("data.side.hostname"),
|
|
|
|
plugin.config.getInt("data.side.port"));
|
|
|
|
if (plugin.config.getBoolean("data.side.auth"))
|
|
|
|
{
|
|
|
|
jedis.auth(plugin.config.getString("data.side.password"));
|
|
|
|
}
|
|
|
|
return jedis;
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
PlexLog.error("An error occurred with Redis.");
|
|
|
|
ex.printStackTrace();
|
|
|
|
}
|
|
|
|
return jedis;
|
2020-10-27 20:12:38 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 08:18:07 +00:00
|
|
|
public final boolean isEnabled()
|
|
|
|
{
|
|
|
|
return plugin.config.getBoolean("data.side.enabled");
|
|
|
|
}
|
2020-10-27 20:12:38 +00:00
|
|
|
}
|