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

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

NAME
DR::Tarantool::SyncClient - sync driver for tarantool <http://tarantool.org> SYNOPSIS
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); METHODS
connect Connects to tarantool. Arguments The same as "connect" in DR::Tarantool::AsyncClient exclude callback. Returns a connector or croaks error. ping The same as "ping" in DR::Tarantool::AsyncClient exclude callback. Returns TRUE or FALSE if an error. insert The same as "insert" in DR::Tarantool::AsyncClient exclude callback. Returns tuples that were extracted from database or undef. Croaks error if an error was happened. select The same as "select" in DR::Tarantool::AsyncClient exclude callback. Returns tuples that were extracted from database or undef. Croaks error if an error was happened. update The same as "update" in DR::Tarantool::AsyncClient exclude callback. Returns tuples that were extracted from database or undef. Croaks error if an error was happened. delete The same as "delete" in DR::Tarantool::AsyncClient exclude callback. Returns tuples that were extracted from database or undef. Croaks error if an error was happened. call_lua The same as "call_lua" in DR::Tarantool::AsyncClient exclude callback. Returns tuples that were extracted from database or undef. Croaks error if an error was happened. 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-04 DR::Tarantool::SyncClient(3pm)
Man Page