public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config)
        {
            base.Initialize(name, config);
            this.client = ProviderHelper.GetClient(name, config, () => (IMemcachedClientFactory) new MembaseClientFactory());

            ProviderHelper.CheckForUnknownAttributes(config);
        }
 protected virtual void InitializeClient(string name, System.Collections.Specialized.NameValueCollection config)
 {
     this.client = ProviderHelper.GetClient(name, config, () => (IMemcachedClientFactory) new MembaseClientFactory());
 }