From 32153763a31b620b66d90be5d8b808c508832d48 Mon Sep 17 00:00:00 2001 From: Nuno Cruces Date: Tue, 5 Nov 2024 17:39:36 +0000 Subject: [PATCH] Update README.md --- vfs/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vfs/README.md b/vfs/README.md index 50e338e..f274c0b 100644 --- a/vfs/README.md +++ b/vfs/README.md @@ -53,6 +53,8 @@ a WAL database can only be accessed by a single proccess. Other processes that attempt to access a database locked with BSD locks, will fail with the [`SQLITE_PROTOCOL`](https://sqlite.org/rescode.html#protocol) error code. +On Windows, this package may use `MapViewOfFile`, like SQLite. + You can also opt into a cross platform, in-process, memory sharing implementation with the `sqlite3_dotlk` build tag. @@ -110,4 +112,4 @@ The VFS can be customized with a few build tags: - [`github.com/ncruces/go-sqlite3/vfs/adiantum`](https://pkg.go.dev/github.com/ncruces/go-sqlite3/vfs/adiantum) wraps a VFS to offer encryption at rest. - [`github.com/ncruces/go-sqlite3/vfs/xts`](https://pkg.go.dev/github.com/ncruces/go-sqlite3/vfs/xts) - wraps a VFS to offer encryption at rest. \ No newline at end of file + wraps a VFS to offer encryption at rest.