我正在玩redis并尝试了bitcount示例:http://redis.io/commands/bitcount。
127.0.0.1:6379> SET mykey "foobar"
OK
127.0.0.1:6379> BITCOUNT mykey
(error) ERR unknown command 'BITCOUNT'
我的redis版本如下:
mohit@mohit:~$ redis-server --version
Redis server v=3.0.1 sha=00000000:0 malloc=jemalloc-3.6.0 bits=64 build=ecf41ef76feca5d
mohit@mohit:~$ redis-cli --version
redis-cli 3.0.1
我在网站上验证过,3.0.1是最新的稳定版本。这种安排出了什么问题?