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.
Asked
Active
Viewed 252 times
-1
-
Forgot to mention, I have like 1.3 Million key-value to write – Suresh Prasad Sep 22 '16 at 20:27
-
3You need to post your code. – eduncan911 Sep 23 '16 at 03:05
1 Answers
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