ATTENTION!
This module is experimental and may have bugs.

The PHP module for key/value database Tarantool/Box,
http://tarantool.org/

This module implements the binary protocol.
The protocol description is located at
https://github.com/mailru/tarantool/blob/master/doc/box-protocol.txt

The following Tarantool/Box configuration file was used for
testing:

space[0].enabled = 1
space[0].index[0].type = "HASH"
space[0].index[0].unique = 1
space[0].index[0].key_field[0].fieldno = 0
space[0].index[0].key_field[0].type = "NUM"

space[0].index[1].type = "TREE"
space[0].index[1].unique = 0
space[0].index[1].key_field[0].fieldno = 1
space[0].index[1].key_field[0].type = "STR"

space[0].index[2].type = "TREE"
space[0].index[2].unique = 0
space[0].index[2].key_field[0].fieldno = 1
space[0].index[2].key_field[0].type = "STR"
space[0].index[2].key_field[1].fieldno = 2
space[0].index[2].key_field[1].type = "STR"


space[0].index[3].type = "TREE"
space[0].index[3].unique = 0
space[0].index[3].key_field[0].fieldno = 3
space[0].index[3].key_field[0].type = "NUM"
