Hacker News new | ask | show | jobs
by tptacek 1378 days ago
My general M.O. for SQLite in Go is to have a single writer thread with a channel of closures to apply transactions, and a shared db handle for reads. Works fine.
1 comments

That's an useful information, Thanks for sharing.