-1

I am generating a huge LMDB file close to 300 MB and it takes hours in Golang. Is there a way to generate it within minutes? I am open to use any other language.

Suresh Prasad
  • 73
  • 1
  • 5

1 Answers1

4

If you are committing the transaction after every single write, avoid it. Commit the transaction after completion of all writes.

dheeraj Vadlani
  • 377
  • 2
  • 13