插入1时,是插入的字符串还是数字

来源:6-3 07-Redis的数据结构之list

junmoxiao_12

2017-09-11 11:30

如果我往数据库中插入数字   1, 插入的结果是:“1”还是 1? 当用incr 是把“1”转成数字之后累加,还是直接去加?

写回答 关注

1回答

  • weibo_俄勒冈的微波炉_0
    2017-09-12 07:18:12
    已采纳

    应该是String,Redis中没有整形和float类型。Redis都会将其作为String来处理,Redis官方给出的回答“Redis doesnot have a dedicated integer type. The string stored at the key is interpreted as a base-10 64 bit signed integer to execute the operation. ”

Redis入门

本课程为Redis和Jedis使用的入门级教程,对Redis有初步了解

107131 学习 · 154 问题

查看课程

相似问题