我是靠谱客的博主 专注大地,最近开发中收集的这篇文章主要介绍RedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integeRedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integer or out of range,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

RedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integer or out of range

问题分析

​ 我们通过Spring的文档可以得知,Spring对Redis的罕用序列化的策略有两种,一种是RedisTemplate应用的JDKSerializationRedisSerialzer序列化,此序列化后得的值蕴含了对象的信息,版本号,类信息等,此序列化后是一个字符串没无法进行自增等操作。

​ 另一种是StringRedisTemplate采用的StringRedisSerializer,此策略是将字符串的值转为为字节数组,所以保存到redis中的是数值,可以进行操作。

解决方法

​ 把RedisTemplate换成String RedisTemplate

最后

以上就是专注大地为你收集整理的RedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integeRedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integer or out of range的全部内容,希望文章能够帮你解决RedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integeRedisTemplate使用increment报错io.lettuce.core.RedisCommandExecutionException: ERR value is not an integer or out of range所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部