Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tarantool_box(1) [debian man page]

TARANTOOL_BOX(1)				     high performance key/value storage server					  TARANTOOL_BOX(1)

NAME
tarantool_box - open-source NoSQL database SYNOPSIS
tarantool_box [OPTIONS] DESCRIPTION
Tarantool is an open-source NoSQL database, developed by Mail.ru. Its key properties include: o Licence: simplified BSD o All data is maintained in RAM o Data persistence is implemented using Write Ahead Log and snapshotting o Supports asynchronous replication and hot standby o Uses coroutines and asynchronous I/O to implement high-performance lock-free access to data o Available on Linux and FreeBSD o Stored procedures in Lua are supported. Data model The basic atom of storage in Tarantool is called tuple. A tuple can have arbitrary number of fields. The first field in the tuple is always the identifying unique key. Tuples form spaces. It is possible to search tuples in spaces using the primary or secondary keys. Fields in a tuple are type-agnostic. It is possible to change, as well as add or remove fields. Command-line options --cfg-get=KEY Returns a value from configuration file described by KEY. --check-config Checks configuration file for errors. -c FILE, --config=FILE Points a path to configuration file (default: /etc/tarantool.cfg). --cat=FILE Cats snapshot file to stdout in readable format and exits. --init-storage Initializes storage (an empty snapshot file) and exits. -v, --verbose Increases verbosity level in log messages. -B, --background Redirects input/output streams to a log file and runs as daemon. -h, --help Displays helpscreen and exits. -V, --version Prints program version and exits. perl v5.14.2 2012-06-29 TARANTOOL_BOX(1)

Check Out this Related Man Page

README(3pm)						User Contributed Perl Documentation					       README(3pm)

NAME
DR::Tarantool - perl driver for tarantool <http://tarantool.org> SYNOPSIS
use DR::Tarantool ':constant', 'tarantool'; use DR::Tarantool ':all'; my $tnt = tarantool host => '127.0.0.1', port => 123, spaces => { ... } ; $tnt->update( ... ); my $tnt = coro_tarantool host => '127.0.0.1', port => 123, spaces => { ... } ; use DR::Tarantool ':constant', 'async_tarantool'; async_tarantool host => '127.0.0.1', port => 123, spaces => { ... }, sub { ... } ; $tnt->update(...); DESCRIPTION
The module provides sync and async drivers for tarantool <http://tarantool.org>. The driver uses libtarantool* libraries for making requests and parsing responses. EXPORT
tarantool connects to tarantool <http://tarantool.org> in sync mode using DR::Tarantool::SyncClient. async_tarantool connects to tarantool <http://tarantool.org> in async mode using DR::Tarantool::AsyncClient. coro_tarantol connects to tarantool <http://tarantool.org> in async mode using DR::Tarantool::CoroClient. :constant Exports constants to use in request as flags: TNT_FLAG_RETURN If You use the flag, driver will return tuple that were inserted/deleted/updated. TNT_FLAG_ADD Try to add tuple. Return error if tuple is already exists. TNT_FLAG_REPLACE Try to replace tuple. Return error if tuple isn't exists. :all Exports all functions and constants. SEE ALSO
The module uses DR::Tarantool::SyncClient and (or) DR::Tarantool::AsyncClient. 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/unera/dr-tarantool/ <https://github.com/unera/dr-tarantool/>. perl v5.14.2 2012-06-06 README(3pm)
Man Page