Skip to content

Commit d6d5fa3

Browse files
committed
worked on links
1 parent 80d317c commit d6d5fa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-cache-for-redis/cache-how-to-premium-persistence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ az redis update --name MyRedisCache --resource-group MyResourceGroup --set "redi
189189

190190
### [Using Azure CLI (Enterprise tier)](#tab/enterprise)
191191

192-
The [az redisenterprise create](/cli/azure/redisenterprise#az-redisenterprise-update) command can be used to create a new Enterprise-tier cache using data persistence. Use the `rdb-enabled`, `rdb-frequency`, `aof-enabled`, and `aof-frequency` parameters to configure the persistence setup. This example creates a new E10 Enterprise tier cache using RDB persistence with one hour frequency:
192+
The [az redisenterprise create](/cli/azure/redisenterprise#az-redisenterprise-create) command can be used to create a new Enterprise-tier cache using data persistence. Use the `rdb-enabled`, `rdb-frequency`, `aof-enabled`, and `aof-frequency` parameters to configure the persistence setup. This example creates a new E10 Enterprise tier cache using RDB persistence with one hour frequency:
193193

194194
```azurecli
195195
az redisenterprise create --cluster-name "cache1" --resource-group "rg1" --location "East US" --sku "Enterprise_E10" --persistence rdb-enabled=true rdb-frequency="1h"
196196
```
197197

198-
Existing caches can be updated using the [az redisenterprise update](/cli/azure/redienterprised#az-redisenterprise-update) command. This example adds RDB persistence with 12 hour frequency to an existing cache instance:
198+
Existing caches can be updated using the [az redisenterprise update](/cli/azure/redisenterprise#az-redisenterprise-update) command. This example adds RDB persistence with 12 hour frequency to an existing cache instance:
199199

200200
```azurecli
201201
az redisenterprise database update --cluster-name "cache1" --resource-group "rg1" --persistence rdb-enabled=true rdb-frequency="12h"

0 commit comments

Comments
 (0)