我是靠谱客的博主 虚心黄蜂,最近开发中收集的这篇文章主要介绍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
方式
最后
以上就是虚心黄蜂为你收集整理的redis遇到的问题:WRONGTYPE Operation against a key holding the wrong kind of value的全部内容,希望文章能够帮你解决redis遇到的问题:WRONGTYPE Operation against a key holding the wrong kind of value所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复