GoLang TokyoTyrant::size

request it (319)
GoLang replacement for PHP's TokyoTyrant::size [edit | history]



Do you know a GoLang replacement for PHP's TokyoTyrant::size? Write it!

PHP TokyoTyrant::size

PHP original manual for TokyoTyrant::size [ show | php.net ]

TokyoTyrant::size

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::sizeReturns the size of the value

Description

public int TokyoTyrant::size ( string $key )

Returns the size of a value by key

Parameters

key

The key of which size to fetch

Return Values

Returns the size of the key or throw TokyoTyrantException on error

Examples

Example #1 TokyoTyrant::size() example

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

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

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

The above example will output:

5