Scroll to navigation

DR::Tarantool::RealSyncClient(3pm) User Contributed Perl Documentation DR::Tarantool::RealSyncClient(3pm)

NAME

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

SYNOPSIS

    my $client = DR::Tarantool::RealSyncClient->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);

DESCRIPTION

The module is a clone of DR::Tarantool::SyncClient but it doesn't use AnyEvent or Coro.

The module uses IO::Socket sockets.

COPYRIGHT AND LICENSE

 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.

VCS

The project is placed git repo on github:
<https://github.com/dr-co/dr-tarantool/>.

2019-10-07 perl v5.30.0