Browse Source
Merge branch 'dev' into berkan/cli-leptonx
pull/13306/head
maliming
4 years ago
No known key found for this signature in database
GPG Key ID: 96224957E51C89E
1 changed files with
3 additions and
1 deletions
-
framework/src/Volo.Abp.Caching/Volo/Abp/Caching/DistributedCache.cs
|
|
|
@ -20,7 +20,9 @@ namespace Volo.Abp.Caching; |
|
|
|
/// Represents a distributed cache of <typeparamref name="TCacheItem" /> type.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TCacheItem">The type of cache item being cached.</typeparam>
|
|
|
|
public class DistributedCache<TCacheItem> : DistributedCache<TCacheItem, string>, IDistributedCache<TCacheItem> |
|
|
|
public class DistributedCache<TCacheItem> : |
|
|
|
DistributedCache<TCacheItem, string>, |
|
|
|
IDistributedCache<TCacheItem> |
|
|
|
where TCacheItem : class |
|
|
|
{ |
|
|
|
public DistributedCache( |
|
|
|
|