TokyoTyrant::copy

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::copyCopies the database

Opis

public TokyoTyrant::copy ( string $path ) : TokyoTyrant

Makes a copy of the current database

Parametry

path

Path to where to copy the database. The user running the remote database must have a write access to the directory.

Zwracane wartości

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

Przykłady

Przykład #1 TokyoTyrant::copy() example

<?php
$tt 
= new TokyoTyrant("localhost"1978);
$tt->copy("/tmp/foobar.tct");
?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top