Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
gorethink
✓ gopkg.in/gorethink/gorethink.v3
Connect to a RethinkDB instance
package main
import (
"fmt"
r "gopkg.in/gorethink/gorethink.v3"
)
func main() {
session, err := r.Connect(r.ConnectOpts{
Address: "localhost:28015",
})
if err != nil {
panic(err)
}
defer session.Close()
fmt.Println("Connected to RethinkDB")
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
3.0.5latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.