redis.clients.jedis.exceptions.JedisDataException: WRONGTYPE Operation against a key holding the wrong kind of value
应该是使用RedisTemplate访问Redis数据结构的时候,使用了错误的数据结构访问方法导致的。
比如redis中是Set结构,然后你使用了opsForZSet()的方法(应该是opsForSet()),就会导致上面的错误。
redis.clients.jedis.exceptions.JedisDataException: WRONGTYPE Operation against a key holding the wrong kind of value
应该是使用RedisTemplate访问Redis数据结构的时候,使用了错误的数据结构访问方法导致的。
比如redis中是Set结构,然后你使用了opsForZSet()的方法(应该是opsForSet()),就会导致上面的错误。
0条评论
我要评论