Reputation: 8774
I am working on the windows version of Redis server
. Version is redis-2.4.5-win32-win64
.
I have started redis server:
[4748] 14 Jul 19:12:32 # Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf' [4748] 14 Jul 19:12:32 * Server started, Redis version 2.4.5
When I am trying to connect to the Redis server, I am getting the below error.
Redis Desktop version is : 0.9.3.817
Upvotes: 0
Views: 4362
Reputation: 169
From the document of Redis, the command SCAN is available since 2.8.0. However your Redis version is older than this one, so you couldn't use SCAN command in your env.
FYR: Redis Scan Command Documentation
Upvotes: 2