diegogub / aranGO

Golang driver for ArangoDB
Apache License 2.0
125 stars 31 forks source link

Implemented support for batch saving #39

Closed myaut closed 7 years ago

myaut commented 8 years ago

Saving via db.Col().Save() is quite ineffecient as it requires http connection per each document and cannot work well for millions of documents. This issue is addressed with batch requests which have packed http requests into multipart data.

diegogub commented 8 years ago

@myaut thanks, I will check this out