Closed (fixed)
Project:
Redis
Version:
7.x-3.4
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 May 2015 at 05:57 UTC
Updated:
19 May 2015 at 08:14 UTC
Jump to comment: Most recent
Hello,
With the latest version (7.x-3.4) and with dev version, despite of a "$conf['redis_client_base'] = 3;" in settings.php, all keys are in database 0.
I found the bug (I think) here : redis/lib/Redis/Client/PhpRedis.php
Line 21 : if (isset($options['database'])) {
Line 22 : $client->select($options['base']);
The correct line 21 whould be : if (isset($options['base'])) {
Thx for your answer :)
Comments
Comment #1
pounardNice one, thanks for reporting, will fix this as soon as possible.
Comment #2
pounardComment #4
CloneVince commentedThx for the fix :)