美文网首页
org.springframework.data.redis.R

org.springframework.data.redis.R

作者: 潼潼夏 | 来源:发表于2020-05-21 22:42 被阅读0次
public Long incr(final String key,final Integer in){
        Long x = redisTemplate.opsForValue().increment(key,in);
        return x;
    }

报错:org.springframework.data.redis.RedisSystemException: Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR value is not an integer or out of range

相关文章

网友评论

      本文标题:org.springframework.data.redis.R

      本文链接:https://www.haomeiwen.com/subject/xjvxahtx.html