README: Update list issues concurrent read/writes

Update the README FAQ section adding one issues more to the list of the
issues related with the concurrent reads and writes. This new added
issues gives a lot of insights, much more than the ones which where
already present.
This commit is contained in:
Ivan Fraixedes 2018-02-24 19:53:12 +00:00
parent 696e2e43cb
commit 766b269f59
No known key found for this signature in database
GPG Key ID: 042B474597F96DB7
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ FAQ
* Can I use this in multiple routines concurrently?
Yes for readonly. But, No for writable. See [#50](https://github.com/mattn/go-sqlite3/issues/50), [#51](https://github.com/mattn/go-sqlite3/issues/51), [#209](https://github.com/mattn/go-sqlite3/issues/209).
Yes for readonly. But, No for writable. See [#50](https://github.com/mattn/go-sqlite3/issues/50), [#51](https://github.com/mattn/go-sqlite3/issues/51), [#209](https://github.com/mattn/go-sqlite3/issues/209), [#274](https://github.com/mattn/go-sqlite3/issues/274).
* Why is it racy if I use a `sql.Open("sqlite3", ":memory:")` database?