Бинарный протокол
This section provides information on the Tarantool binary protocol, iproto. The protocol is called «binary» because the database is most frequently accessed via binary code instead of Lua request text. Tarantool experts use it:
- to write their own connectors
- to understand network messages
- to support new features that their favorite connector doesn’t support yet
- to avoid repetitive parsing by the server
The binary protocol provides complete access to Tarantool functionality, including:
- мультиплексирование запросов, т.е. возможность асинхронной отправки множества запросов по одному соединению;
- формат ответа, который поддерживает запись в режиме без копирования (zero-copy).