public Task <long> SetAddAsync <T>(string key, IEnumerable <T> values, TimeSpan?expiresIn = null) { return(UnscopedCache.SetAddAsync(GetScopedCacheKey(key), values, expiresIn)); }
public Task <bool> SetAddAsync <T>(string key, T value, TimeSpan?expiresIn = null) { return(UnscopedCache.SetAddAsync(GetScopedCacheKey(key), value, expiresIn)); }