Skip to content

Commit

Permalink
Use shared memory Sqlite database.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitar authored Jun 11, 2020
1 parent 9d20d23 commit 9af4afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/docs/connecting_to_the_database.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func main() {
### SQLite3


**NOTE:** You can also use `:memory:` instead of a path to a file. This will tell SQLite to use a temporary database in system memory. (See [SQLite docs](https://www.sqlite.org/inmemorydb.html) for this.)
**NOTE:** You can also use `file::memory:?cache=shared` instead of a path to a file. This will tell SQLite to use a temporary database in system memory. (See [SQLite docs](https://www.sqlite.org/inmemorydb.html) for this.)

```go
import (
Expand Down

0 comments on commit 9af4afc

Please sign in to comment.