Exemplo n.º 1
0
            public void Add(string groupName, string cacheKey)
            {
                groupName = GenerateGroupCacheKey(groupName);
                bool sucess = m_Cacher.Append(groupName, cacheKey + FLAG);

                if (!sucess)
                {
                    m_Cacher.Add(groupName, cacheKey + FLAG, TimeSpan.FromDays(30));
                }
            }