结果回调

结果 可调用s 由 Memcached::getDelayed()Memcached::getDelayedBykey() 方法为结果集中的每个项目调用。回调被传递 Memcached 对象和包含项目信息的数组。回调不需要返回值。

示例 #1 结果回调示例

<?php
$m
= new Memcached();
$m->addServer('localhost', 11211);
$items = array(
'key1' => 'value1',
'key2' => 'value2',
'key3' => 'value3'
);
$m->setMulti($items);
$m->getDelayed(array('key1', 'key3'), true, 'result_cb');

function
result_cb($memc, $item)
{
var_dump($item);
}
?>

上面的示例将输出类似于

array(3) {
  ["key"]=>
  string(4) "key1"
  ["value"]=>
  string(6) "value1"
  ["cas"]=>
  float(49)
}
array(3) {
  ["key"]=>
  string(4) "key3"
  ["value"]=>
  string(6) "value3"
  ["cas"]=>
  float(50)
}
添加注释

用户贡献的注释 1 条注释

3
edwarddrapkin at gmail dot com
15 年前
我在使用 getDelayed 中的结果回调进行方法调用时遇到了麻烦,所以我给开发人员发了邮件。

如果你想使用非静态方法作为回调,请使用以下格式:array($obj, 'method');例如

<?php
class foo {
private
$M = false;

public function
__construct() {
$this->M = new Memcached();
$this->M->addServer('localhost', 11211);
$this->M->set('a', 'test');
}

public function
test() {
$this->M->getDelayed(array('a'), false, array($this, 'fun'));
}

public function
fun() {
echo
"Great Success!";
}
}

$f = new foo();
$f->test();
?>

或者,另外

<?php
class foo {
public
$M = false;

public function
__construct() {
$this->M = new Memcached();
$this->M->addServer('localhost', 11211);
$this->M->set('a', 'test');
}

public function
fun() {
echo
"Great Success!";
}
}

$f = new foo();
$f->M->getDelayed(array('a'), false, array($f, 'fun'));
?>

效果很好,谢谢 Andrei :)
To Top