TokyoTyrantTable::genUid

(PECL tokyo_tyrant >= 0.1.0)
Generate unique id
public int TokyoTyrantTable::genUid ( void )

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

Returns:

Returns an unique id or throws TokyoTyrantException on error

Examples:
TokyoTyrantTable::genUid() example
<?php
$tt = new TokyoTyrantTable("localhost", 1122);

echo $tt->genUid();
?>

The above example will output something similar to:

4
See also:

TokyoTyrantTable::put() -

doc_php
2016-02-24 16:18:51
Comments
Leave a Comment

Please login to continue.