TokyoTyrant::putNr
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::putNr — Puts value
Описание
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.
Примеры
Пример #1 TokyoTyrant::putNr() example
<?php
/* Connect to a database on default port */
$tt = new TokyoTyrant("localhost");
/* Put single key-value pair */
$tt->putNr("key", "value");
/* Put key-value pairs */
$tt->putNr(array("key1" => "value1", "key2" => "value2"));
/* Get back one key */
echo $tt->get("key1");
?>
Результат выполнения данного примера:
value1
Смотрите также
- TokyoTyrant::putNr()
- TokyoTyrant::putKeep() - Puts a record
- TokyoTyrant::putCat() - Concatenates to a record
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с базами данных
- Расширения для работы с базами данных отдельных производителей
- tokyo_tyrant
- Функция TokyoTyrant::add() - Adds to a numeric key
- Функция TokyoTyrant::connect() - Connect to a database
- Функция TokyoTyrant::connectUri() - Connects to a database
- Функция TokyoTyrant::__construct() - Construct a new TokyoTyrant object
- Функция TokyoTyrant::copy() - Copies the database
- Функция TokyoTyrant::ext() - Execute a remote script
- Функция TokyoTyrant::fwmKeys() - Returns the forward matching keys
- Функция TokyoTyrant::get() - The get purpose
- Функция TokyoTyrant::getIterator() - Get an iterator
- Функция TokyoTyrant::num() - Number of records in the database
- Функция TokyoTyrant::out() - Removes records
- Функция TokyoTyrant::put() - Puts values
- Функция TokyoTyrant::putCat() - Concatenates to a record
- Функция TokyoTyrant::putKeep() - Puts a record
- Функция TokyoTyrant::putNr() - Puts value
- Функция TokyoTyrant::putShl() - Concatenates to a record
- Функция TokyoTyrant::restore() - Restore the database
- Функция TokyoTyrant::setMaster() - Set the replication master
- Функция TokyoTyrant::size() - Returns the size of the value
- Функция TokyoTyrant::stat() - Get statistics
- Функция TokyoTyrant::sync() - Synchronize the database
- Функция TokyoTyrant::tune() - Tunes connection values
- Функция TokyoTyrant::vanish() - Empties the database
Коментарии
404 Not Found