De Azure Quickstart-sjablonen zijn momenteel beschikbaar in het Engels
This template shows how to configure persistence in a premium Azure Redis Cache instance.
Deze ARM-sjabloon (Azure Resource Manager) is gemaakt door een lid van de community, niet door Microsoft. Elke ARM-sjabloon wordt aan u in licentie gegeven onder een licentieovereenkomst van de eigenaar, niet van Microsoft. Microsoft is niet verantwoordelijk voor ARM-sjablonen die door communityleden worden verstrekt en in licentie worden gegeven, en test deze sjablonen ook niet op veiligheid, compatibiliteit of prestaties. ARM-sjablonen van de community worden onder geen enkel programma of geen enkele service van Microsoft ondersteund, en worden 'AS IS' beschikbaar gesteld, zonder enige vorm van garantie.
Parameters
Parameternaam | Beschrijving |
---|---|
redisCacheName | Specify the name of the Azure Redis Cache to create. |
storageAccountName | Name of the storage account. |
location | The location of the Redis Cache. For best performance, use the same location as the app to be used with the cache. |
redisCacheSKU | Specify the pricing tier of the new Azure Redis Cache. |
redisCacheFamily | Specify the family for the sku. C = Basic/Standard, P = Premium |
redisCacheCapacity | Specify the size of the new Azure Redis Cache instance. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4) |
enableNonSslPort | Specify a boolean value that indicates whether to allow access via non-SSL ports. |
diagnosticsEnabled | Specify a boolean value that indicates whether diagnostics should be saved to the specified storage account. |
existingDiagnosticsStorageAccountId | Specify an existing storage account for diagnostics. |
De sjabloon gebruiken
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure PowerShell installeren en configureren
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.cache/redis-premium-persistence/azuredeploy.json
Opdrachtregel
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentDe platformoverschrijdende Azure-opdrachregelinterface installeren en configureren
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.cache/redis-premium-persistence/azuredeploy.json