title | description | author | ms.author | ms.service | ms.devlang | ms.topic | ms.date | ms.custom |
---|---|---|---|---|---|---|---|---|
Use Azure Cache for Redis with Go |
In this quickstart, you learn how to create a Go app that uses Azure Cache for Redis. |
flang-msft |
franlanglois |
cache |
golang |
quickstart |
09/09/2021 |
mode-api |
In this article, you learn how to build a REST API in Go that stores and retrieves user information backed by a HASH data structure in Azure Cache for Redis.
If you want to skip straight to the code, see the Go quickstart on GitHub.
- Azure subscription - create one for free
- Go (preferably version 1.13 or above)
- Git
- An HTTP client such curl
[!INCLUDE redis-cache-create]
[!INCLUDE redis-cache-create]
If you're interested in learning how the code works, you can review the following snippets. Otherwise, feel free to skip ahead to Run the application.
The open source go-redis library is used to interact with Azure Cache for Redis.
The main
function starts off by reading the host name and password (Access Key) for the Azure Cache for Redis instance.
func main() {
redisHost := os.Getenv("REDIS_HOST")
redisPassword := os.Getenv("REDIS_PASSWORD")
...
Then, we establish connection with Azure Cache for Redis. We use tls.Config--Azure Cache for Redis only accepts secure connections with TLS 1.2 as the minimum required version.
...
op := &redis.Options{Addr: redisHost, Password: redisPassword, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS12}}
client := redis.NewClient(op)
ctx := context.Background()
err := client.Ping(ctx).Err()
if err != nil {
log.Fatalf("failed to connect with redis instance at %s - %v", redisHost, err)
}
...
If the connection is successful, HTTP handlers are configured to handle POST
and GET
operations and the HTTP server is started.
Note
gorilla mux library is used for routing (although it's not strictly necessary and we could have gotten away by using the standard library for this sample application).
uh := userHandler{client: client}
router := mux.NewRouter()
router.HandleFunc("/users/", uh.createUser).Methods(http.MethodPost)
router.HandleFunc("/users/{userid}", uh.getUser).Methods(http.MethodGet)
log.Fatal(http.ListenAndServe(":8080", router))
userHandler
struct encapsulates a redis.Client, which is used by the createUser
, getUser
methods - code for these methods isn't included for brevity.
createUser
: accepts a JSON payload (containing user information) and saves it as aHASH
in Azure Cache for Redis.getUser
: fetches user info fromHASH
or returns an HTTP404
response if not found.
type userHandler struct {
client *redis.Client
}
...
func (uh userHandler) createUser(rw http.ResponseWriter, r *http.Request) {
// details omitted
}
...
func (uh userHandler) getUser(rw http.ResponseWriter, r *http.Request) {
// details omitted
}
Start by cloning the application from GitHub.
-
Open a command prompt and create a new folder named
git-samples
.md "C:\git-samples"
-
Open a git terminal window, such as git bash. Use the
cd
command to change to the new folder where you want to clone the sample app.cd "C:\git-samples"
-
Run the following command to clone the sample repository. This command creates a copy of the sample app on your computer.
git clone https://github.com/Azure-Samples/azure-redis-cache-go-quickstart.git
The application accepts connectivity and credentials in the form of environment variables.
-
Fetch the Host name and Access Keys (available via Access Keys) for Azure Cache for Redis instance in the Azure portal
-
Set them to the respective environment variables:
set REDIS_HOST=<Host name>:<port> (e.g. <name of cache>.redis.cache.windows.net:6380) set REDIS_PASSWORD=<Primary Access Key>
-
In the terminal window, change to the correct folder. For example:
cd "C:\git-samples\azure-redis-cache-go-quickstart"
-
In the terminal, run the following command to start the application.
go run main.go
The HTTP server will start on port 8080
.
-
Create a few user entries. The below example uses curl:
curl -i -X POST -d '{"id":"1","name":"foo1", "email":"[email protected]"}' localhost:8080/users/ curl -i -X POST -d '{"id":"2","name":"foo2", "email":"[email protected]"}' localhost:8080/users/ curl -i -X POST -d '{"id":"3","name":"foo3", "email":"[email protected]"}' localhost:8080/users/
-
Fetch an existing user with its
id
:curl -i localhost:8080/users/1
You should get JSON response as such:
{ "email": "foo1@bar", "id": "1", "name": "foo1" }
-
If you try to fetch a user who doesn't exist, you get an HTTP
404
. For example:curl -i localhost:8080/users/100 #response HTTP/1.1 404 Not Found Date: Fri, 08 Jan 2021 13:43:39 GMT Content-Length: 0
If you're finished with the Azure resource group and resources you created in this quickstart, you can delete them to avoid charges.
Important
Deleting a resource group is irreversible, and the resource group and all the resources in it are permanently deleted. If you created your Azure Cache for Redis instance in an existing resource group that you want to keep, you can delete just the cache by selecting Delete from the cache Overview page.
To delete the resource group and its Redis Cache for Azure instance:
-
From the Azure portal, search for and select Resource groups.
-
In the Filter by name text box, enter the name of the resource group that contains your cache instance, and then select it from the search results.
-
On your resource group page, select Delete resource group.
-
Type the resource group name, and then select Delete.
In this quickstart, you learned how to get started using Go with Azure Cache for Redis. You configured and ran a simple REST API-based application to create and get user information backed by a Redis HASH
data structure.
[!div class="nextstepaction"] Create a simple ASP.NET web app that uses an Azure Cache for Redis.