diff options
author | Ivan Fraixedes <ivan@fraixed.es> | 2018-02-24 19:53:12 +0000 |
---|---|---|
committer | Ivan Fraixedes <ivan@fraixed.es> | 2018-02-24 19:53:12 +0000 |
commit | 766b269f590f18caf9a8806d0e0c58f4ab12eedb (patch) | |
tree | 8f036c53ecd19ae80355257116dd2bf5a22f0ab5 | |
parent | Merge pull request #530 from navytux/y/no-go-if-notneeded (diff) | |
download | golite-766b269f590f18caf9a8806d0e0c58f4ab12eedb.tar.gz golite-766b269f590f18caf9a8806d0e0c58f4ab12eedb.tar.xz |
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.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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? |