Hacker News new | ask | show | jobs
by ak39 814 days ago
Thank you. Also, what database was in use?
2 comments

sqlite3, but I think bulk inserts would improve perf for other DBs too.
PG has “copy” which would blow away bulk inserts. Other DB vendors have similar stuff for high-performance inserts. You would be much better off using those than using bulk inserts.
sqlite