TokyoTyrant::size

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::sizeReturns the size of the value

Descrição

public TokyoTyrant::size ( string $key ) : int

Returns the size of a value by key

Parâmetros

key

The key of which size to fetch

Valor Retornado

Returns the size of the key or throw TokyoTyrantException on error

Exemplos

Exemplo #1 TokyoTyrant::size() example

<?php
$tt 
= new TokyoTyrant("localhost");

$tt->put("test_key""12345");

echo 
$tt->size("test_key");
?>

O exemplo acima irá imprimir:

5