/// <summary>
        /// 删除cache
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btn_removecache_click(object sender, EventArgs e)
        {
            MemcachedClient cache = new MemcachedClient();

            //获取负载服务器集合
            string[] serverlist = OperateParam.SplitByComma(ConfigurationManager.AppSettings["MemCacheServers"]);
            //初始化池
            SockIOPool pool = SockIOPool.GetInstance();

            pool.SetServers(serverlist);
            pool.Initialize();
            cache.Delete("TestCache");//删除cache
        }
        /// <summary>
        /// 设置cache
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btn_setcache_click(object sender, EventArgs e)
        {
            MemcachedClient cache = new MemcachedClient();

            //获取负载服务器集合
            string[] serverlist = OperateParam.SplitByComma(ConfigurationManager.AppSettings["MemCacheServers"]);
            //初始化池
            SockIOPool pool = SockIOPool.GetInstance();

            pool.SetServers(serverlist);
            pool.Initialize();
            cache.Set("TestCache", "hello,memcache", DateTime.Now.AddMinutes(2));
        }
        /// <summary>
        /// 获取cache
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btn_getcache_click(object sender, EventArgs e)
        {
            MemcachedClient cache = new MemcachedClient();

            //获取负载服务器集合
            string[] serverlist = OperateParam.SplitByComma(ConfigurationManager.AppSettings["MemCacheServers"]);
            //初始化池
            SockIOPool pool = SockIOPool.GetInstance();

            pool.SetServers(serverlist);
            pool.Initialize();
            var getCache = cache.Get("TestCache");//获取cache

            Response.Write("获取到的cache为:" + getCache);
        }