文字

TokyoTyrant::putNr

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::putNrPuts value

说明

public TokyoTyrant TokyoTyrant::putNr ( mixed $keys [, string $value = NULL ] )

Puts a key-value pair into the database or multiple key-value pairs. If keys is string then the second parameter value defines the value. The second parameter is mandatory if keys is a string. This method does not wait for the response from the server.

参数

keys

A string key or an array of key-value pairs

value

The value in case a string key is used

返回值

This method returns a reference to the current object and throws TokyoTyrantException on failure.

范例

Example #1 TokyoTyrant::putNr() example

<?php

$tt  = new  TokyoTyrant ( "localhost" );


$tt -> putNr ( "key" "value" );


$tt -> putNr (array( "key1"  =>  "value1" "key2"  =>  "value2" ));


echo  $tt -> get ( "key1" );
?>

以上例程会输出:

value1

参见

  • TokyoTyrant::putNr()
  • TokyoTyrant::putKeep() - Puts a record
  • TokyoTyrant::putCat() - Concatenates to a record
上一篇: 下一篇: