Open baltazorbest opened 8 years ago
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();
$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) }
array { 'key' => array(result), 'key' => array(result) }
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) }