tinyredisclient
tinyredisclient copied to clipboard
Support for multiple DBs
It does not seem that there is a way to select a DB, then issue a command:
echo $redisClient->select(2); echo $redisClient->get('key');
The select does return ok, but the subsequent get request looks for a key in DB 0. It would be nice to be able to specify the DB in the constructor.
Best, -O