I am a newbie with Redis...I just recently picked up Redisent to work with Redis in PHP...and I am having tons of fun! However, I signed up for the Redis to go service, and
According to the documentation now, you can do this as part of the instantiation...
$redis = new Predis\Client(array( 'host' => '10.0.0.1', 'password' => 'secret', 'database' => 10, ));
or
$redis = new Predis\Client('redis://10.0.0.1/?password=secret&database=10');