public override bool BaseExists(string cacheKey)
        {
            bool isExists = _memoryProvider.Exists(cacheKey);

            if (!isExists)
            {
                isExists = _redisProvider.Exists(cacheKey);
            }
            return(isExists);
        }