TokyoTyrant::add
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::add — Adds to a numeric key
Description
Adds to an int or double value. This increments the value by the given amount and returns the new value. If the key does not exist a new key is created with initial value of the increment parameter.
Parameters
-
key
-
The string key
-
increment
-
The amount to increment
-
type
-
TokyoTyrant::RDBREC_INT
orTokyoTyrant::RDBREC_DBL
constant. If this parameter is omitted the type is guessed from theincrement
parameters type.
Return Values
Returns the new value on success
Examples
Example #1 TokyoTyrant::add() example
<?php
$tt = new TokyoTyrant("localhost", TokyoTyrant::RDBDEF_PORT);
/* Adds integer 3 to key and creates a new key */
$tt->add("test", 3);
/* String value is converted to double */
echo $tt->add("test", "3.5", TokyoTyrant::RDBREC_DBL);
?>
The above example will output something similar to:
6.5
See Also
- TokyoTyrant::put() - Puts values
- TokyoTyrant::putcat() - Concatenates to a record
- TokyoTyrant::putkeep() - Puts 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