TokyoTyrant::connect
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::connect — Connect to a database
说明
public
TokyoTyrant::connect (
string
$host
[,
int $port
= TokyoTyrant::RDBDEF_PORT [,
array $options
]] ) :
TokyoTyrant
Connects to a remote database
参数
-
host
-
The hostname
-
port
-
The port. Default: 1978
-
options
-
Connection options: timeout (default: 5.0), reconnect (default:
TRUE
) and persistent (default:TRUE
)
返回值
This method returns the current object and throws TokyoTyrantException on failure.
范例
Example #1 TokyoTyrant::connect() example
<?php
$tt = new TokyoTyrant();
$tt->connect("localhost", TokyoTyrant::RDBDEF_PORT)->put("test", "value");
?>