mirror of
https://github.com/nalgeon/redka.git
synced 2025-12-24 12:38:00 +08:00
450 B
450 B
Installing Redka as a Go module
Install the module as follows:
go get github.com/nalgeon/redka
You'll also need an SQLite driver. Use one of the following:
github.com/mattn/go-sqlite3(CGO, fastest)github.com/ncruces/go-sqlite3(pure Go, WASM)github.com/tursodatabase/go-libsql(CGO)modernc.org/sqlite(pure Go)
Install a driver with go get like this:
go get github.com/mattn/go-sqlite3