Windows Azure Redis 缓存服务

8月20日,Windows Azure (中国版)开始提供Redis缓存服务,比较国际版的Microsoft Azure晚了差不多一年的时间。说实话,微软真不应该将这个重要的功能delay这么长时间,缓存服务已经成为国内很多主流云产品的标配。

Redis缓存服务是Windows Azure上一个完全托管的、高吞吐量,低延迟,高性能、安全的PaaS服务。完全兼容on-premises版本的Redis。

Redis缓存服务现包括两个版本(级别):

  • 基本版:单节点服务器。
  • 标准版:双节点服务器,主从复制。

每个版本中都包括了不同的服务大小,即:缓存容量。不同的缓存容量对应不同的收费标准。最大缓存容量为53GB。

沿袭Windows Azure新功能的一贯风格——没有配置界面,只能通过PowerShell来管理。

切换到资源管理模式

Switch-AzureMode -Name AzureResourceManager

添加Windows Azure账户。在资源管理模式下,没法使用publishsettingsfile中的登陆凭据。因此,即便之前导入过publishsettingsfile,也要重新添加Windows Azure账号才能通过身份验证。

Add-AzureAccount -Environment AzureChinaCloud

设置当前订阅

Select-AzureSubscription -SubscriptionId [订阅ID]

创建新的Windows Azure资源组

New-AzureResourceGroup -Name [windows Azure资源组名称] -Location "China North"

创建新的Redis缓存服务。[Redis缓存服务名称]必须是“全网唯一”的,例如:别人用了“MyRedis-01”,那么我们就无法创建同名的Redis缓存服务了。因为这个名字会被作为Redis缓存服务主机名的一部分,例如:[Redis缓存服务名称].redis.cache.chinacloudapi.cn。

New-AzureRedisCache -ResourceGroupName [windows Azure资源组名称] -Name [Redis缓存服务名称] -Location "China North"

如果没有出现错误,第一个Redis缓存服务就创建成功了。可以使用 Get-AzureRedisCache 命令来查看已经创建的Redis缓存服务信息。

若出现以下错误信息,则是由于[Redis缓存服务名称]重名引起的,换一个名字就可以了。

New-AzureRedisCache : NameNotAvailable: An error occured when trying to reserve the DNS name for the cache instance. Th
is may be a temporary issue if a cache instance of this name was recently deleted. Please choose a different name or tr
y again later.
RequestID=12cf91c9-8e92-4100-bff4-8ef3cae591a9
所在位置 行:1 字符: 1
+ New-AzureRedisCache -ResourceGroupName testgroup -Name TestRedis01 -L ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [New-AzureRedisCache],CloudException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.RedisCache.NewAzureRedisCache

使用上述命令创建的Redis缓存服务,默认是标准版(双节点),1GB容量(C1)。如果需要创建不同版本和大小的Redis缓存服务,可以通过执行以下命令来获取详细的命令参数列表。

get-help New-AzureRedisCache -Detailed
上一篇:.NET基于Redis缓存实现单点登录SSO的解决方案[转]


下一篇:.NET基于Redis缓存实现单点登录SSO的解决方案