Y
Hacker News
new
|
ask
|
show
|
jobs
by
thomascgalvin
1286 days ago
No, because of SQLite's locking mechanism. It uses filesytem-level constructs to support concurrency, and this gets dicey, quickly.
1 comments
markusw
1286 days ago
As my test above shows, use a mutex for writes in Go directly and whatever locking performance problems SQLite exhibits disappear. I suspect because of the polling used in SQLite as described elsewhere on this page.
link