Azure Redis Cache plus Azure Search
{ | |
"type": "Microsoft.Cache/Redis", | |
"name": "[variables('RedisCache').Name]", | |
"apiVersion": "2016-04-01", | |
"location": "[resourceGroup().location]", | |
"tags": { | |
"displayName": "Redis Cache" | |
}, | |
"properties": { | |
"redisVersion": "3.0", | |
"sku": { | |
"name": "[variables('RedisCache').SKUName]", | |
"family": "[variables('RedisCache').SKUFamily]", | |
"capacity": "[variables('RedisCache').SKUCapacity]" | |
}, | |
"enableNonSslPort": false, | |
"redisConfiguration": { | |
"maxclients": "256" | |
} | |
}, | |
"resources": [], | |
"dependsOn": [] | |
}, | |
{ | |
"apiVersion": "2015-08-19", | |
"name": "[variables('searchAppName')]", | |
"type": "Microsoft.Search/searchServices", | |
"location": "[resourceGroup().location]", | |
"properties": { | |
"replicaCount": "1", | |
"partitionCount": "1", | |
"hostingMode": "default" | |
}, | |
"sku": { | |
"name": "basic" | |
}, | |
"tags": { | |
"displayName": "Search Service" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment