GoLang TokyoTyrantTable::genUid

request it (217)
GoLang replacement for PHP's TokyoTyrantTable::genUid [edit | history]



Do you know a GoLang replacement for PHP's TokyoTyrantTable::genUid? Write it!

PHP TokyoTyrantTable::genUid

PHP original manual for TokyoTyrantTable::genUid [ show | php.net ]

TokyoTyrantTable::genUid

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::genUidGenerate unique id

Description

public int TokyoTyrantTable::genUid ( void )

Generates an unique id inside the table database. In table databases rows are referenced using a numeric primary key.

Parameters

This function has no parameters.

Return Values

Returns an unique id or throws TokyoTyrantException on error

Examples

Example #1 TokyoTyrantTable::genUid() example

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

echo 
$tt->genUid();
?>

The above example will output something similar to:

4

See Also