@@ -441,40 +441,37 @@ After this you can transfer archive to whatever place you want, unarchive it and
441441## Batch
442442### StorageBatchSpaceBuilder
443443
444- #### ` insert() `
445- * ` List<dynamic> data `
444+ #### ` insert() ` - Adding insert operation to batch
445+ * ` List<dynamic> data ` - Inserting tuple
446446
447- #### ` put() `
448- * ` List<dynamic> data `
447+ #### ` put() ` - Adding put operation to batch
448+ * ` List<dynamic> data ` - Putting tupple
449449
450- #### ` put ()`
451- * ` List<dynamic> data `
450+ #### ` delete ()` - Adding delete operation to batch
451+ * ` List<dynamic> data ` - Deleting tuple
452452
453- #### ` delete() `
454- * ` List<dynamic> data `
455-
456- #### ` update() `
457- * ` List<dynamic> key, List<StorageUpdateOperation> operations `
458-
459- #### ` upsert() `
460- * ` List<dynamic> tuple, List<StorageUpdateOperation> operations `
453+ #### ` update() ` - Adding update operation to batch
454+ * ` List<dynamic> key ` - Tuple key
455+ * ` List<StorageUpdateOperation> operations ` - Update oeprations. [ See] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_index/update/ )
461456
462- #### ` insertMany() `
463- * ` List<List<dynamic>> data `
457+ #### ` upsert() ` - Adding update operation to batch
458+ * ` List<dynamic> tuple ` - Tuple to insert or update
459+ * ` List<StorageUpdateOperation> operations ` - Update oeprations. [ See] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_index/update/ )
464460
465- #### ` putMany ()`
466- * ` List<List<dynamic>> data `
461+ #### ` insertMany ()` - Adding insert operations to batch
462+ * ` List<List<dynamic>> data ` - Inserted tuples
467463
468- #### ` putMany() `
469- * ` List<List<dynamic>> data `
464+ #### ` putMany() ` - Adding put operations to batch
465+ * ` List<List<dynamic>> data ` - Putted tuples
470466
471- #### ` deleteMany() `
472- * ` List<List<dynamic>> data `
467+ #### ` deleteMany() ` - Adding delete operations to batch
468+ * ` List<List<dynamic>> data ` - Deleted tuples
473469
474470### StorageBatchIndexBuilder
475471
476- #### ` update() `
477- * ` List<dynamic> key, List<StorageUpdateOperation> operations `
472+ #### ` update() ` - Adding update operation to batch
473+ * ` List<dynamic> key ` - Tuple key
474+ * ` List<StorageUpdateOperation> operations ` - Update oeprations. [ See] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_index/update/ )
478475
479476## Lua - StorageLuaExecutor
480477### [ async] ` startBackup() ` - Executing box.backup.start() [ see] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_backup/start/ )
0 commit comments