aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Fraixedes <ivan@fraixed.es>2018-02-24 19:53:12 +0000
committerIvan Fraixedes <ivan@fraixed.es>2018-02-24 19:53:12 +0000
commit766b269f590f18caf9a8806d0e0c58f4ab12eedb (patch)
tree8f036c53ecd19ae80355257116dd2bf5a22f0ab5
parentMerge pull request #530 from navytux/y/no-go-if-notneeded (diff)
downloadgolite-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.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index bddbf8b..4870adf 100644
--- a/README.md
+++ b/README.md
@@ -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?