Files
sqlite3/vfs/memdb/README.md

9 lines
347 B
Markdown
Raw Normal View History

2023-05-31 18:45:45 +01:00
# Go `"memdb"` SQLite VFS
This package implements the [`"memdb"`](https://www.sqlite.org/src/file/src/memdb.c)
SQLite VFS in pure Go.
It has some benefits over the C version:
- the memory backing the database needs not be contiguous,
- the database can grow/shrink incrementally without copying,
- reader-writer concurrency is slightly improved.