add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,21 @@
# az redis
> 管理 Redis 缓存。
> 是 `azure-cli`(也称为 `az`)的一部分。
> 更多信息:<https://learn.microsoft.com/cli/azure/redis>。
- 创建一个新的 Redis 缓存实例:
`az redis create --location {{location}} --name {{name}} --resource-group {{resource_group}} --sku {{Basic|Premium|Standard}} --vm-size {{c0|c1|c2|c3|c4|c5|c6|p1|p2|p3|p4|p5}}`
- 更新 Redis 缓存:
`az redis update --name {{name}} --resource-group {{resource_group}} --sku {{Basic|Premium|Standard}} --vm-size {{c0|c1|c2|c3|c4|c5|c6|p1|p2|p3|p4|p5}}`
- 导出存储在 Redis 缓存中的数据:
`az redis export --container {{container}} --file-format {{file-format}} --name {{name}} --prefix {{prefix}} --resource-group {{resource_group}}`
- 删除 Redis 缓存:
`az redis delete --name {{name}} --resource-group {{resource_group}} --yes`