問下 弄過redis的人 為什麼incr指令會報錯。 。 「0」可以轉換為 0 呀。
redis 版本是windows 3.2.100 穩定版
为情所困2017-04-27 09:04:55
我這邊也是正常的
127.0.0.1:6379> set test "0"
OK
127.0.0.1:6379> INCR test
(integer) 1
127.0.0.1:6379> INCR test
(integer) 2
127.0.0.1:6379> INCR test
(integer) 3
127.0.0.1:6379> get test
"3"
127.0.0.1:6379> type test
string
版本是redis-3.2.4
ringa_lee2017-04-27 09:04:55
incr
# 情况3:key不是数字值
redis> SET book "long long ago..."
OK
redis> INCRBY book 200
(error) ERR value is not an integer or out of range
不知道你的版本是多少,我版本redis_version:2.4.10 測試沒問題的,在線測試鏈接
ringa_lee2017-04-27 09:04:55
ServiceStack.Redis 用戶端 的確是為string類型的值省略了「」。如果額外加上「」 反而弄巧成拙了! 另外多謝
@蘇生不惑 @mylxsw