Skip to content
Snippets Groups Projects
Commit 45736471 authored by ocelot-inc's avatar ocelot-inc
Browse files

test+correct examples+links as far as server administration

parent c5b39ffc
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,8 @@ SIGHUP can be used to cause a log file rotation. See
.. program:: tarantool
If ``tarantool`` is started without a Lua script to run, it automatically
If ``tarantool`` is started without an :ref:`initialization file <init-label>`,
or if the initialization file contains :func:`console.start()`, then ``tarantool``
enters interactive mode. There will be a prompt ("``tarantool>``") and it will
be possible to enter requests. When used this way, ``tarantool`` can be
a client for a remote server.
......@@ -99,10 +100,12 @@ described in `Lua documentation`_. Examples: 'Hello, world', 'A', [[A\\B!]].
.. _Lua documentation: http://www.lua.org/pil/2.4.html
Numeric literals are: Character sequences containing only digits, optionally
preceded by + or -. Examples: 55, -. Notes: Tarantool NUM data type is
preceded by + or -. Large or floating-point numeric
literals may include decimal points, exponential notation, or suffixes.
Examples: 500, -500, 5e2, 500.1, 5LL, 5ULL. Notes: Tarantool NUM data type is
unsigned, so -1 is understood as a large unsigned number.
Single-byte tokens are: * or , or ( or ). Examples: * , ( ).
Single-byte tokens are: , or ( or ) or arithmetic operators. Examples: * , ( ).
Tokens must be separated from each other by one or more spaces, except that
spaces are not necessary around single-byte tokens or string literals.
......
......@@ -58,7 +58,7 @@
threads = *number*,
node_size = *number*,
memory_limit = *number*,
}`
}
This method may change in the future.
......
......@@ -38,7 +38,7 @@ Tarantool is started by entering the command:
.. code-block:: console
$ ./tarantool --version
Tarantool 1.6.3-439-g7e1011b
Tarantool 1.6.8-235-gb948587
Target: Linux-x86_64-Debug
...
......
......@@ -89,7 +89,7 @@ degraded state requires a human inspection.
However, once a master failure is detected, the recovery is simple: declare
that the replica is now the new master, by saying
:codenormal:`box.cfg{... listen=`:codeitalic:`URI`:codenormal`}`.
:codenormal:`box.cfg{... listen=`:codeitalic:`URI`:codenormal:`}`.
Then, if there are updates on the old master that were not propagated before
the old master went down, they would have to be re-applied manually.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment