在Predis中使用hmset的问题

时间:2013-06-18 16:37:14

标签: php redis predis

我在使用$predis->hmset()时遇到问题。我需要使用哪些参数? 我尝试了很多变种,但没有成功。

$this->client()->hmset( $this->name, array( 1 => 3 ))

$this->client()->hmset( $this->name, array( 1, 3 ))

1 个答案:

答案 0 :(得分:10)

来自the predis examples

// Prepare an hash with some fields and their respective values.
$client->hmset('metavars', array('foo' => 'bar', 'hoge' => 'piyo', 'lol' => 'wut'));

也许,请确保使用字符串而不是整数...