weixin.popular.support.expirekey.JedisExpireKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
The newest version!
package weixin.popular.support.expirekey;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import weixin.popular.support.ExpireKey;
public class JedisExpireKey implements ExpireKey {
private static Logger logger = LoggerFactory.getLogger(JedisExpireKey.class);
private JedisPool pool;
private static final String DEFAULT_VALUE = "";
private String perfix = "WP_ExpireKey_";
public JedisExpireKey() {
}
public JedisExpireKey(JedisPool pool) {
this.pool = pool;
}
public void setPerfix(String perfix) {
this.perfix = perfix;
}
public void setPool(JedisPool pool) {
this.pool = pool;
}
@Override
public boolean add(String key, int expire) {
Jedis jedis = null;
try {
jedis = pool.getResource();
jedis.setex(perfix + key, expire, DEFAULT_VALUE);
return true;
} catch (Exception e) {
logger.error("", e);
} finally {
if (jedis != null) {
jedis.close();
}
}
return false;
}
@Override
public boolean add(String key) {
return add(key, DEFAULT_EXPIRE);
}
@Override
public boolean exists(String key) {
Jedis jedis = null;
try {
jedis = pool.getResource();
return jedis.exists(perfix + key);
} catch (Exception e) {
logger.error("", e);
} finally {
if (jedis != null) {
jedis.close();
}
}
return false;
}
}