I tried to download go-redis using this command go get github.com/go-redis/redis/v8
but I got this following error :
cannot find package "github.com/go-redis/redis/v8" in any of:
C:\Go\src\github.com\go-redis\redis\v8 (from $GOROOT)
E:\Go Workspace\src\github.com\go-redis\redis\v8 (from $GOPATH)
Why did I get this error and how to fix this ?
OS : Windows
Go version : go version go1.15 windows/amd64
Following steps solved my problem:
Create a main.go file and write the following code to check for your connection
When we will run this now, we will see that the Go application will successfully ping the redis instance and it will return a successful PONG response: