TokyoTyrant::fwmKeys
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::fwmKeys — Returns the forward matching keys
Описание
public array TokyoTyrant::fwmKeys
( string
$prefix
, int $max_recs
)Returns the forward matching keys from the database
Список параметров
-
prefix
-
Prefix of the keys
-
max_recs
-
Maximum records to return
Возвращаемые значения
Returns an array of matching keys. The values are not returned
Примеры
Пример #1 TokyoTyrant::fwmKeys() example
<?php
$tt = new TokyoTyrant("localhost");
/* Create 20 macthing keys */
for ($i = 0; $i < 20; $i++) {
$tt->put("key_" . $i, "value_" . $i);
}
/* Create 20 non-macthing keys */
for ($i = 0; $i < 20; $i++) {
$tt->put("something_" . $i, "data_" . $i);
}
/* Get five matching keys */
var_dump($tt->fwmKeys("key_", 5));
?>
Результатом выполнения данного примера будет что-то подобное:
array(5) { [0]=> string(5) "key_5" [1]=> string(6) "key_14" [2]=> string(5) "key_6" [3]=> string(6) "key_15" [4]=> string(5) "key_7" }
- 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