
DR::Tarantool::AsyncClient - async client for tarantool

use DR::Tarantool::AsyncClient 'tarantool';
DR::Tarantool::AsyncClient->connect(
host => '127.0.0.1',
port => 12345,
spaces => {
0 => {
name => 'users',
fields => [
qw(login password role),
{
name => 'counter',
type => 'NUM'
}
],
indexes => {
0 => 'login',
1 => [ qw(login password) ],
}
},
2 => {
name => 'roles',
fields => [ qw(name title) ],
indexes => {
0 => 'name',
1 => {
name => 'myindex',
fields => [ 'name', 'title' ],
}
}
}
}
sub {
my ($client) = @_;
...
}
);
$client->ping(sub { ... });
$client->insert('space', [ 'user', 10, 'password' ], sub { ... });
$client->call_lua(foo => ['arg1', 'arg2'], sub { });
client->select('space', 1, sub { ... });
$client->delete('space', 1, sub { ... });
$client->update('space', 1, [ passwd => set => 'abc' ], sub { .. });

Connects to tarantool:http://tarantool.org, returns (by callback) object that can be used to make requests.
DR::Tarantool::AsyncClient->connect(
host => $host,
port => $port,
spaces => $spaces,
reconnect_period => 0.5,
reconnect_always => 1,
sub {
my ($obj) = @_;
if (ref $obj) {
... # handle errors
}
...
}
);
Address where tarantool is started.
A hash with spaces description or DR::Tarantool::Spaces reference.
See DR::Tarantool::LLClient for more details.

Returns space object by name (or by number). See perldoc DR::Tarantool::Spaces for more details.

All methods receive callbacks that will receive the following arguments:
If success the field will have value 'ok'.
If success, the second argument will contain tuple(s) that extracted by request.
Error string if error was happened.
sub {
if ($_[0] eq 'ok') {
my ($status, $tuples) = @_;
...
} else {
my ($status, $code, $errstr) = @_;
}
}
Pings server.
$client->ping(sub { ... });
Inserts tuple into database.
$client->insert('space', [ 'user', 10, 'password' ], sub { ... });
$client->insert('space', \@tuple, $flags, sub { ... });
Flag list described in perldoc ":constant" in DR::Tarantool.
Calls lua function. All arguments translates to lua as strings (As is). Returned tuples can be unpacked by space or by format.
$client->call_lua(foo => ['arg1', 'arg2'], sub { });
$client->call_lua(foo => [], 'space_name', sub { ... });
$client->call_lua(foo => \@args,
flags => $f,
space => $space_name,
sub { ... }
);
$client->call_lua(foo => \@args,
fields => [ qw(a b c) ],
sub { ... }
);
$client->call_lua(foo => \@args,
fields => [ qw(a b c), { type => 'NUM', name => 'abc'} ... ],
sub { ... }
);
Space name. Use the argument if Your function returns tuple(s) from a described in connect space.
Output fields format (like 'fields' in connect method).
Reserved option.
Argument fields format.
Selects tuple(s) from database.
$tuples = $client->select('space', 1, sub { ... });
$tuples = $client->select('space', [1, 2], sub { ... });
$tuples = $client->select('space_name',
[1,2,3] => 'index_name', sub { ... });
The section can contain only one element: index name, or hash with the following fields:
Deletes tuple.
$client->delete('space', 1, sub { ... });
$client->delete('space', $key, $flags, sub { ... });
Flag list described in perldoc ":constant" in DR::Tarantool.
Updates tuple.
$client->update('space', 1, [ passwd => set => 'abc' ], sub { .. });
$client->update(
'space',
1,
[ [ passwd => set => 'abc' ], [ login => 'delete' ] ],
sub { ... }
);
Flag list described in perldoc ":constant" in DR::Tarantool.

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/unera/dr-tarantool/.