//public static object Get(string strKey, int cacheType = 1)
        //{
        //    if (cacheType == 0)
        //    {
        //        return DistCache.Get(strKey);
        //    }
        //    else
        //    {
        //        return RedisManager.Get<object>(strKey);
        //    }
        //}

        public static long Increment(string strKey, long lAmount)
        {
            return(DistCache.Increment(strKey, lAmount));
        }