tarantool / tarantool-php

PECL PHP driver for Tarantool
http://tarantool.org/
Other
86 stars 24 forks source link

Add support batch #102

Open baltazorbest opened 8 years ago

baltazorbest commented 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();

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