AppFabric Cmdlet - 无法连接到本地群集

时间:2012-07-26 09:52:15

标签: powershell appfabric cmdlets

我一直在尝试编写一个简单的小Cmdlet来允许我设置/获取/删除缓存项。我遇到的问题是我无法弄清楚如何连接到本地缓存集群。

我已尝试添加常用的app.config内容,但这似乎没有被提起......

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="dataCacheClient" type="Microsoft.ApplicationServer.Caching.DataCacheClientSection, Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" allowLocation="true" allowDefinition="Everywhere" />
  </configSections>
  <dataCacheClient>
    <hosts>
      <host name="localhost" cachePort="22233" />
    </hosts>
  </dataCacheClient>
</configuration>

我宁愿根本没有配置。所以我真正要问的是以下PowerShell的等效C#代码...

Use-CacheCluster

如果没有提供参数,我可以收集Use-CacheCluster连接到本地群集

2 个答案:

答案 0 :(得分:1)

我刚刚使用Reflector对AppFabric Powershell代码进行了一些探讨,看看它是如何工作的。如果您在没有参数的情况下拨打Use-CacheCluster,对于本地群集,代码从注册表项HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\AppFabric\V1.0\Configuration中读取连接字符串和提供程序名称。不幸的是,它然后使用这些值来构建一系列类(ClusterConfigElementCacheAdminClusterHandler),这些类都标记为内部,因此您无法使用它们来获取Powershell正在使用的当前集群上下文(想要更好的单词)。

为了使你的Cmdlet工作,那么,我认为你需要传入一个主机名(它可能是你的集群中的一个服务器,也许你可以将它默认为本地机器名)和一个端口号(您可以默认为22233),并使用这些值构建DataCacheServerEndpoint以传递给DataCacheFactory,例如

[Cmdlet(VerbsCommon.Set,"Value")]
public class SetValueCommand : Cmdlet
{
    [Parameter]
    public string Hostname { get; set; }
    [Parameter]
    public int PortNumber { get; set; }
    [Parameter(Mandatory = true)]
    public string CacheName { get; set; }

    protected override void ProcessRecord()
    {
        base.ProcessRecord();

        // Read the incoming parameters and default to the local machine and port 22233
        string host = string.IsNullOrWhiteSpace(Hostname) ? Environment.MachineName : Hostname;
        int port = PortNumber == 0 ? 22233 : PortNumber;

        // Create an endpoint based on the parameters
        DataCacheServerEndpoint endpoint = new DataCacheServerEndpoint(host, port);

        // Create a config using the endpoint
        DataCacheFactoryConfiguration config = new DataCacheFactoryConfiguration();
        config.Servers = new List<DataCacheServerEndpoint> { endpoint };

        // Create a factory using the config
        DataCacheFactory factory = new DataCacheFactory(config);

        // Get a reference to the cache so we can now start doing useful work...
        DataCache cache = factory.GetCache(CacheName);
        ...
    }
}

答案 1 :(得分:0)

问题是电话: DataCacheFactoryConfiguration config = new DataCacheFactoryConfiguration();

在Cmdlet mothods中产生一个错误,听起来像“无法初始化DataCacheFactoryConfiguration”。