This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker pull redis | |
docker run -p 6379:6379 redis | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Package Microsoft.Extensions.Caching.StackExchangeRedis | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Logging": { | |
"LogLevel": { | |
"Default": "Information", | |
"Microsoft.AspNetCore": "Warning" | |
} | |
}, | |
"Redis": { | |
"ConnectionString": "localhost:6379" | |
}, | |
"AllowedHosts": "*" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Caching.Distributed; | |
using System.Text.Json; | |
namespace CacheUse.Infrastructure | |
{ | |
public interface ICacheProvider | |
{ | |
Task<T> GetFromCacheAsync<T>(string key) where T:class; | |
Task SetCacheAsync<T>(string key, T value) where T : class; | |
} | |
public class CacheProvider : ICacheProvider | |
{ | |
DistributedCacheEntryOptions options = new DistributedCacheEntryOptions() | |
{ | |
SlidingExpiration = TimeSpan.FromSeconds(30) | |
}; | |
private readonly IDistributedCache distrubutedCache; | |
public CacheProvider(IDistributedCache distrubutedCache) | |
{ | |
this.distrubutedCache = distrubutedCache; | |
} | |
public async Task<T> GetFromCacheAsync<T>(string key) where T : class | |
{ | |
var cachedValue = await distrubutedCache.GetStringAsync(key); | |
return cachedValue == null ? null : JsonSerializer.Deserialize<T>(cachedValue); | |
} | |
public async Task SetCacheAsync<T>(string key, T value) where T : class | |
{ | |
var cacheValue = JsonSerializer.Serialize(value); | |
await distrubutedCache.SetStringAsync(key, cacheValue, options); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using CacheUse.Infrastructure; | |
using Microsoft.Extensions.Caching.Distributed; | |
using System.Text.Json; | |
namespace CacheUse.Services | |
{ | |
public interface IDistrubutedCacheService | |
{ | |
Task<T> GetAsync<T>(string key) where T : class; | |
Task SetAsync<T>(string key,T value) where T : class; | |
} | |
public class DistrubutedCacheService : IDistrubutedCacheService | |
{ | |
private readonly ICacheProvider cacheProvider; | |
public DistrubutedCacheService(ICacheProvider cacheProvider) | |
{ | |
this.cacheProvider = cacheProvider; | |
} | |
public async Task<T> GetAsync<T>(string key) where T: class | |
{ | |
return await cacheProvider.GetFromCacheAsync<T>(key); | |
} | |
public async Task SetAsync<T>(string key, T value) where T: class | |
{ | |
await cacheProvider.SetCacheAsync<T>(key, value); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private readonly ILogger<WeatherForecastController> _logger; | |
private readonly IDistrubutedCacheService distrubutedCacheService; | |
public WeatherForecastController(ILogger<WeatherForecastController> logger , IDistrubutedCacheService distrubutedCacheService) | |
{ | |
_logger = logger; | |
this.distrubutedCacheService = distrubutedCacheService; | |
} | |
[HttpGet("{GetRedisCache}")] | |
public async Task<IEnumerable<WeatherForecast>> GetRedisCache() | |
{ | |
var key = "weatherForecastList"; | |
IEnumerable<WeatherForecast>? weatherForecastList =null; | |
weatherForecastList = await distrubutedCacheService.GetAsync<IEnumerable<WeatherForecast>>(key); | |
if (weatherForecastList != null) | |
{ | |
Console.WriteLine("weatherForecastList from Redis Cache "); | |
} | |
else | |
{ | |
Console.WriteLine("weatherForecastList Not Exists in Redis Cache "); | |
weatherForecastList = Enumerable.Range(1, 5).Select( | |
index => new WeatherForecast | |
{ | |
Date = DateTime.Now.AddDays(index), | |
TemperatureC = Random.Shared.Next(-20, 55), | |
Summary = Summaries[Random.Shared.Next(Summaries.Length)] | |
} | |
); | |
await distrubutedCacheService.SetAsync<IEnumerable<WeatherForecast>>(key, weatherForecastList); | |
Console.WriteLine("weatherForecastList added Cache"); | |
} | |
return weatherForecastList; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
builder.Services.AddStackExchangeRedisCache(o => | |
{ | |
o.Configuration = builder.Configuration.GetSection("Redis")["ConnectionString"]; //"localhost"; | |
o.InstanceName = "SampleInstance"; | |
}); | |
builder.Services.AddScoped<ICacheProvider, CacheProvider>(); | |
builder.Services.AddScoped<IDistrubutedCacheService, DistrubutedCacheService>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OUTPUT: | |
weatherForecastList Not Exists in Redis Cache | |
weatherForecastList added Cache | |
weatherForecastList from Redis Cache | |
Yorumlar
Yorum Gönder