Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 459 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 459 Bytes

SQLite: CGO vs no CGO

This repo benchmarks mattn/go-sqlite3 against modernc.org/sqlite which is a translation of SQLite3 from C to Go. This translation allows the latter package to avoid CGO since there is no C.

My initial observations showed it being twice as slow as mattn/go-sqlite3 and this repo is to test that observation.

See the blog post for details.