node-tarantool-driver
node-tarantool-driver copied to clipboard
Node driver for Tarantool 1.6+
Roadmap
1. Eval support 2. Denque or something better instead current just array. 3. Support multihost. 4. Reconnection 5. Simpler API
script: ``` var libs = process.cwd() + '/libs/'; var fs = require('fs'); var readline = require('linebyline'); var TarantoolConnection = require('tarantool-driver'); var conn = new TarantoolConnection({port: 3301, log: false}); var inserted...
Tarantool 1.7.1 adds a new implementation of CALL command which supports EVAL-style marshalling, i.e. returned data is not converted to tuples anymore. Old CALL command (code = 6) is deprecated....
Нормальное человеческое ридми
При невыясненных обстоятельствах у меня бывают случаи когда промис не резолвится. ``` js tarantool.insert(...) .then(result => { /* Не вызывается */ }) .catch(error => { /* Не вызывается */ })...
Now that the iproto protocol has sc_schema_id, fix the driver to perform "soft" schema reload. - load the current schema automatically when connection is established - include sc_schema_id in queries...
Проверить peformance и сравнить ее с аналогичным драйвером редиса
Can you help make support new type like UUID, Decimal, DateTime