Skip to content

Commit c065a24

Browse files
committed
fix link
1 parent cf91f5a commit c065a24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/redis/how-to-manage-redis-cache-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ New-AzRedisEnterpriseCache -ResourceGroupName myGroup -Name mycache -Location "N
5757

5858
You can use the [New-AzRedisEnterpriseCacheDatabase](/powershell/module/az.redisenterprisecache/new-azredisenterprisecachedatabase) cmdlet to create and configure databases for your Azure Managed Redis cache.
5959

60-
If you don't configure databases during cache creation, [New-AzRedisEnterpriseCache](/powershell/module/az.RedisEnterpriseCache/New-azRedisEnterpriseCache) creates one database in the cache named `default` by default, and all cache data goes into this DB 0 database.
60+
If you don't configure databases during cache creation, [New-AzRedisEnterpriseCache](/powershell/module/az.RedisEnterpriseCache/New-azRedisEnterpriseCache) creates one database in the cache named `default` by default, and all cache data goes into this `DB 0` database.
6161

6262
To see a list of available parameters and their descriptions for `New-AzRedisEnterpriseCacheDatabase`, run the following command.
6363

@@ -78,7 +78,7 @@ Get-Help Update-AzRedisEnterpriseCache -detailed
7878

7979
You can use the `Update-AzRedisEnterpriseCache` cmdlet to update properties such as `Sku`, `Tag`, and `MinimumTlsVersion`.
8080

81-
The following command updates the minimum TLS version and adds a tag to the Azure Managed Redis cache named `myCache`.
81+
The following command updates the minimum Transport Layer Security (TLS) version and adds a tag to the Azure Managed Redis cache named `myCache`.
8282

8383
```azurepowershell
8484
Update-AzRedisEnterpriseCache -Name "myCache" -ResourceGroupName "myGroup" -MinimumTlsVersion "1.2" -Tag @{"tag1" = "value1"}
@@ -216,7 +216,7 @@ The following tables show Azure PowerShell properties and descriptions for commo
216216
| Size |The size of the cache. Valid values are: P1, P2, P3, P4, P5, C0, C1, C2, C3, C4, C5, C6, 250 MB, 1 GB, 2.5 GB, 6 GB, 13 GB, 26 GB, 53 GB |1 GB |
217217
| ShardCount |The number of shards to create when creating a premium cache with clustering enabled. Valid values are: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 | |
218218
| SKU |The SKU of the cache. Valid values are: Basic, Standard, Premium |Standard |
219-
| RedisConfiguration |Redis configuration settings. For details on each setting, see the following [RedisConfiguration properties](#redisconfiguration-properties) table. | |
219+
| RedisConfiguration |Redis configuration settings. For details on each setting, see the following [RedisConfiguration properties](#properties-for-the-redisconfiguration-parameter) table. | |
220220
| EnableNonSslPort |Whether the non-SSL port is enabled. |False |
221221
| MaxMemoryPolicy |This parameter is deprecated. Use `RedisConfiguration` instead. | |
222222
| StaticIP |When you host your cache in a virtual network, a unique IP address in the subnet for the cache. If not provided, one is chosen for you from the subnet. | |

0 commit comments

Comments
 (0)