TokyoTyrant::putCat

(PECL tokyo_tyrant >= 0.1.0)
Concatenates to a record
public TokyoTyrant TokyoTyrant::putCat ( mixed $keys [, string $value ] )

Appends a value into existing key or multiple values if keys is an array. The second parameter is mandatory if keys is a string. If the record does not exist a new record is created.

Parameters:
keys

A string key or an array of key-value pairs

value

The value in case a string key is used

Returns:

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

Examples:
TokyoTyrant::putCat() example
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/* Connect to a database on default port */
$tt new TokyoTyrant("localhost");
 
/* Create a new key */
$tt->put("key""value");
 
/* Concatenate single key-value pair */
$tt->putCat("key"" has more data");
 
/* Echo the key */
echo $tt->get("key");
?>

The above example will output:

value has more data
See also:

TokyoTyrant::put() -

TokyoTyrant::putKeep() -

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

Please login to continue.