Files
redka/docs/install-module.md
2024-06-10 22:14:09 +05:00

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