14 lines
343 B
C#
14 lines
343 B
C#
namespace PARR.DAL.CacheServices
|
|
{
|
|
public interface IRedisCacheService
|
|
{
|
|
T? GetCachedData<T>(string key);
|
|
|
|
Task<T?> GetCachedDataAsync<T>(string key);
|
|
|
|
void SetCachedData<T>(string key, T data, TimeSpan cacheDuration);
|
|
|
|
Task SetCachedDataAsync<T>(string key, T data, TimeSpan cacheDuration);
|
|
}
|
|
}
|