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::CoroClient(3) User Contributed Perl Documentation DR::Tarantool::CoroClient(3)

DR::Tarantool::CoroClient - an asynchronous coro driver for Tarantool <http://tarantool.org>

    use DR::Tarantool::CoroClient;
    use Coro;
    my $client = DR::Tarantool::CoroClient->connect(
        port    => $port,
        spaces  => $spaces;
    );

    my @res;
    for (1 .. 100) {
        async {
            push @res => $client->select(space_name => $_);
        }
    }
    cede while @res < 100;

Connects to Tarantool.

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 server error.

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

Returns true on success, false on error.

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

Returns the inserted tuple or undef. Croaks an error if insert failed (raise_error must be set).

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

Returns tuple or tuples that match selection criteria, or undef if no matching tuples were found. Croaks an error if an error occurred (provided raise_error is set).

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

Returns the new value of the tuple. Croaks an error if update failed (provided raise_error is set).

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

Returns the deleted tuple, or undef. Croaks error if an error occurred (provided raise_error is set).

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

Returns a tuple or tuples returned by the called procedure. Croaks an error if an error occurred (provided raise_error is set).

2013-05-06 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.