--Hi,First, (i'm sorry for my poor English in advance, i'm not very fluent), so i'm getting a classcast exception, here the code :public static Set<String> findEntries(String nameClass, String fieldName, Object fieldValue) {Jedis j = null;try {j = pool.getResource();} catch (Exception e) {LOGGER.error(e.getMessage(), e);}try {String key = nameClass+ "<" + fieldName + ">";double minmaxScore = calculateScore(fieldValue);Set<String> result = j.zrangeByScore(key, minmaxScore, minmaxScore);return result;} catch (JedisConnectionException e) {LOGGER.error(e.getMessage(), e);if (j != null) {pool.returnBrokenResource(j);j = null;}}} finally {if(j != null)pool.returnResource(j);}}Here the exception :java.lang.ClassCastException: [B cannot be cast to java.util.Listat redis.clients.jedis.Connection.getBinaryMultiBulkReply(Connection.java:202)at redis.clients.jedis.Connection.getMultiBulkReply(Connection.java:195)at redis.clients.jedis.Jedis.zrangeByScore(Jedis.java:2023)[..]I have implemented a webservice which call this method with a asynchronous client and it throws this exception. Any ideas ? I use Redis 2.6 and Jedis 2.2.1
You received this message because you are subscribed to the Google Groups "Jedis" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jedis_redis...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.