tarantool-php icon indicating copy to clipboard operation
tarantool-php copied to clipboard

Add support batch

Open baltazorbest opened this issue 8 years ago • 0 comments

Please add support batch for multi insert / update / delete / select.

For example: $tnt = Tarantool('localhost', 3301); $tnt->connect(); $batch = $tnt->batch(); $batch->insert(); $batch->update(); $batch->delete(); $batch->select(); $result = $batch->exec();

Result like: array { 'key' => array(result), 'key' => array(result) }

baltazorbest avatar Aug 30 '16 14:08 baltazorbest