(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::ext — Execute a remote script
Executes a remote script extension.
Name of the function to execute
Either TokyoTyrant::RDBXO_LCKREC for record locking and TokyoTyrant::RDBXO_LCKGLB for global locking.
The key to pass to the function
The value to pass to the function
Returns the result of the script function
Example #1 TokyoTyrant::ext() example
<?php
$tt = new TokyoTyrant("localhost", 1978);
echo $tt->ext("somefunc", TokyoTyrant::RDBXO_LCKREC, "some_key", "some_value");
?>