Add the 'prefix' client option. The client will automatically prepend the specified prefix string to each key.

This commit is contained in:
Daniele Alessandri
2011-05-05 17:16:14 +02:00
parent 46db0409a1
commit e97e13bde5
4 changed files with 17 additions and 4 deletions
+1 -4
View File
@@ -8,10 +8,7 @@ require 'SharedConfigurations.php';
// user-level namespaces for you keyspace, thus eliminating the need for separate
// logical databases.
use Predis\Commands\Processors\KeyPrefixProcessor;
$client = new Predis\Client();
$client->getProfile()->setProcessor(new KeyPrefixProcessor('nrk:'));
$client = new Predis\Client($single_server, array('prefix' => 'nrk:'));
$client->mset(array('foo' => 'bar', 'lol' => 'wut'));
var_dump($client->mget('foo', 'lol'));