jfinal你好,在使用jfinal redis的有序集时,想通过Zremrangebyscore 命令移除有序集合中给定的分数区间的所有成员,但是com.jfinal.plugin.redis.cache中并没有提供这个方法,但是redis.clients.jedis.BinaryJedis中有提供包括zremrangeByScore,zremrangeByRank在内的更多操作方法,我应该如何把这些方法集成到com.jfinal.plugin.redis.cache中去使用?
项目:JFinal
public class MyRedis {
public static Type Zremrangebyscore(Xxx para) {
Jedis jedis = Redis.use().getJedis();
try {
return jedis.zremrangebyscore(...);
} finally {
jedis.cose();
}
}
然后你可以通过这个工具类去使用:
MyRedis. Zremrangebyscore(...);