typedb / typedb-driver-examples

TypeDB Driver Example Projects and Tutorials
https://typedb.com
Apache License 2.0
84 stars 57 forks source link

Use multiple inserts per a transaction commit #107

Closed taliesins closed 2 years ago

taliesins commented 3 years ago

Problem to Solve

Currently there is a transaction created and commited for each object that is inserted

Proposed Solution

Use batched inserts or the whole file at once where appropriate.

insert 
  $_ isa person; 
  $_ isa person;