TokyoTyrant::out

(PECL tokyo_tyrant >= 0.1.0)
Removes records
public TokyoTyrant TokyoTyrant::out ( mixed $keys )

Removes a record or multiple records. This method accepts a string for a single key or an array of keys for multiple records.

Parameters:
keys

A string key or an array of string keys

Returns:

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

Examples:
TokyoTyrant::out() example
1
2
3
4
5
6
7
8
9
<?php
/* Connect to a database on default port */
$tt new TokyoTyrant("localhost");
 
$tt->put("test1""value1");
$tt->put("test2""value2");
 
$tt->out(array("test1""test2"));
?>
See also:

TokyoTyrant::put() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.