GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DR::Tarantool::SyncClient(3) User Contributed Perl Documentation DR::Tarantool::SyncClient(3)

DR::Tarantool::SyncClient - a synchronous driver for Tarantool <http://tarantool.org>.

    my $client = DR::Tarantool::SyncClient->connect(
        port    => $tnt->primary_port,
        spaces  => $spaces
    );

    if ($client->ping) { .. };

    my $t = $client->insert(
        first_space => [ 1, 'val', 2, 'test' ], TNT_FLAG_RETURN
    );

    $t = $client->call_lua('luafunc' =>  [ 0, 0, 1 ], 'space_name');

    $t = $client->select(space_name => $key);

    $t = $client->update(space_name => 2 => [ name => set => 'new' ]);

    $client->delete(space_name => $key);

Connects to the server.

Arguments

The same as "connect" in DR::Tarantool::AsyncClient, excluding the callback.

Returns a connection handle or croaks an error.

Additional arguments

raise_error
If true (default behaviour) the driver throws an exception for each error.

The same as "ping" in DR::Tarantool::AsyncClient, excluding the callback.

Returns true on success, b<false> in case of an error.

The same as "insert" in DR::Tarantool::AsyncClient, excluding the callback.

Returns the inserted tuple. Croaks error if an error occurred (as long as raise_error is true).

The same as "select" in DR::Tarantool::AsyncClient, excluding the callback.

Returns tuples contained in the server response or undef. Croaks error if an error occurred (as long as raise_error is true).

The same as "update" in DR::Tarantool::AsyncClient, excluding the callback.

Returns the updated tuple. Croaks error if an error occurred (as long as raise_error is true).

The same as "delete" in DR::Tarantool::AsyncClient, excluding the callback.

Returns the deleted tuple or undef. Croaks error if an error occurred (as long as raise_error is true).

The same as "call_lua" in DR::Tarantool::AsyncClient, excluding the callback.

Returns tuples contained in the server response or undef. Croaks error if an error occurred (as long as raise_error is true).

 Copyright (C) 2011 Dmitry E. Oboukhov <unera@debian.org>
 Copyright (C) 2011 Roman V. Nikolaev <rshadow@rambler.ru>

 This program is free software, you can redistribute it and/or
 modify it under the terms of the Artistic License.

The project is placed git repo on github: <https://github.com/dr-co/dr-tarantool/>.
2013-08-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.