GoLang TokyoTyrantTable::out

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



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

PHP TokyoTyrantTable::out

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

TokyoTyrantTable::out

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::outRemove records

Description

public void TokyoTyrantTable::out ( mixed $keys )

Removes records from a table database.

Parameters

keys

A single integer key or an array of integers

Return Values

This method returns the current object and throws TokyoTyrantException on failure.

Examples

Example #1 TokyoTyrantTable::out() example

<?php
/* Connect to a table database */
$tt = new TokyoTyrantTable("localhost"1979);

/* Passing null to put generates a new uid */
$index $tt->put(null, array("column1" => "some data""column2" => "more data"));

/* Delete the row */
$tt->out($index);
?>

See Also