1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
=head1 NAME
tarantool - a Lua application server and a database management system
=head1 SYNOPSIS
tarantool [OPTIONS] [SCRIPT [ARGS]]
=head1 DESCRIPTION
Tarantool is a Lua application server fully compatible with Lua 5.1.
It includes a mature database to persist, replicate and recover application
state and a curated set of Lua modules for networking, I/O, messaging, data
formats and more.
It is designed to let developers quickly create efficient, reliable and
powerful micro-services and backend applications for the Internet.
Key features:
=over
=item *
Fully compatible with Lua 5.1.
=item *
Coroutines and asynchronous I/O to implement high-performance lock-free
access to data.
=item *
ACID transactions.
=item *
ANSI SQL, Lua stored procedures and triggers.
=item *
Authentication and access control.
=item *
Master-master replication and automatic sharding.
=back
=head1 OPTIONS
You can use these options before (or instead of) the interpreted 'SCRIPT'
name:
=over
=item -h, --help
Display the help screen and exit.
=item -V, -v, --version
Print the program version and exit.
=item -e EXRP
Execute the string 'EXPR'.
=item -l NAME
Require the library 'NAME'.
=item -i
Enter the interactive mode after executing 'SCRIPT'.
=item --
Stop handling options.
=item -
Execute stdin and stop handling options.
=back
=head1 SEE ALSO
tarantoolctl(1), Tarantool documentation at http://tarantool.org
=head1 COPYRIGHT
Copyright (C) 2010-2017 Tarantool AUTHORS: please see AUTHORS file.
=cut
|