redis

Azure Cache for Redis

DatabasesAzure
General

General information about the service.

Description

In-memory data store for caching and messaging.

Namespace and Entity

Microsoft.Cache/Redis

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

redis-

Length

1-63

Valid Characters

Alphanumerics, hyphens, underscores.

Scope

resource group

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "azurerm_redis_cache" "main" {
2 name = "redis-${var.project}-${var.environment}"
3 location = azurerm_resource_group.main.location
4 resource_group_name = azurerm_resource_group.main.name
5 capacity = 2
6 family = "C"
7 sku_name = "Standard"
8 enable_non_ssl_port = false
9 minimum_tls_version = "1.2"
10
11 redis_configuration {
12 maxmemory_policy = "volatile-lru"
13 }
14
15 tags = var.tags
16}
Utilities

Utilities to support app deployment or configuration.

Private Endpoints

Details to successfully deploy private endpoints on Azure.

Sub-Resource Names

redisCache

Private DNS Zone Names

privatelink.redis.cache.windows.net

Public DNS Zone Forwarders

redis.cache.windows.net