redis中pipeline怎么样传参数进去啊
像这样。我不可能就传比如我要把
$pipe->set("key:$i", "$内容[i]");
怎么把内容的数组传进去
官方的就是下面这样,说的太少了
Redis::pipeline(function($pipe)
{
for ($i = 0; $i < 1000; $i++)
{
$pipe->set("key:$i", $i);
}
});
$pipe->set("key:$i", "$内容[i]");
怎么把内容的数组传进去
官方的就是下面这样,说的太少了
Redis::pipeline(function($pipe)
{
for ($i = 0; $i < 1000; $i++)
{
$pipe->set("key:$i", $i);
}
});
1 个回复
ZnithMay
赞同来自:
比如
//如果是&$内容,则传入不是副本,可以进行变量修改
Redis::pipeline(function($pipe) use($内容)
{
for ($i = 0; $i < 1000; $i++)
{
$pipe->set("key:$i", $i);
}
});