TokyoTyrant::size
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::size — Returns the size of the value
Описание
public int TokyoTyrant::size
( string $key
)
Список параметров
-
key
-
The key of which size to fetch
Возвращаемые значения
Returns the size of the key or throw TokyoTyrantException on error
Примеры
Пример #1 TokyoTyrant::size() example
<?php
$tt = new TokyoTyrant("localhost");
$tt->put("test_key", "12345");
echo $tt->size("test_key");
?>
Результат выполнения данного примера: