redis遇到的问题:WRONGTYPE Operation against a key holding the wrong kind of value

org.springframework.data.redis.RedisSystemException: Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: WRONGTYPE Operation against a key holding the wrong kind of value

为什么出现这种情况呢?
存取类型不匹配。这里我找到了这篇博客https://blog.csdn.net/qq_36850813/article/details/101057167
有一定帮助。
这里我存值用的封装的工具类RedisUtils.set(String key,Object obj);这里obj我放的是Map对象,希望使用redis存哈希值,失败了,报上面错误。
这里存值应该使用redisTemplate.opsForHash().putAll(String key,Map map)
这里我认为使用Object是可以的,但是查询后发现redis会有key-object,key-string,key-map这种存值关系,所以只能坚定地使用putAll方式

你可能感兴趣的:(数据库,exception)