|
Memcached::getDelayed複数のアイテムを要求する 説明
public bool Memcached::getDelayed(array
$keys , bool $with_cas = false , callablenull $value_cb = null )
Memcached::getDelayed は、
結果を明示的に取得するのではなく、result コールバック を
パラメータ
戻り値
成功した場合に 例
例1 Memcached::getDelayed の例
上の例の出力は以下となります。 array(2) { [0]=> array(3) { ["key"]=> string(3) "int" ["value"]=> int(99) ["cas"]=> float(2363) } [1]=> array(3) { ["key"]=> string(5) "array" ["value"]=> array(2) { [0]=> int(11) [1]=> int(12) } ["cas"]=> float(2365) } } 参考
|