It's better to write a supported redis version list in the README
Closed this issue · 2 comments
gouchaoer commented
This project depends on predis and points out the predis version. That's good. But on some Redis version, phpRedisAdmin doesn't work although the predis works. For example, my redis version is 2.4.10 on centos6.5, Predis 1.0.1 works fine but phpRedisAdmin doesn't work because redis 2.4.10 doesn't support 'SCAN' command.
erikdubbelboer commented
This has nothing to do with predis. As you can see on http://redis.io/commands/scan the scan command is available as of redis 2.8.0.
For this reason we have thet keys
configuration option to disable the use of SCAN
. See includes/config.sample.inc.php
gouchaoer commented
That's right...I enable the use of keys in config.inc.php and it works.