File tree 1 file changed +3
-13
lines changed
1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change 1
1
# ServiceStackRedisCache
2
2
3
- Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using ServiceStack.Redis.Core.
3
+ Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using ServiceStack.Redis.
4
4
5
5
### Install Package
6
- https://www.nuget.org/packages/ServiceStackRedisCache
6
+ https://www.nuget.org/packages/ServiceStackRedisCache or https://www.nuget.org/packages/Microsoft.Extensions.Caching.ServiceStackRedis
7
7
8
8
### Configure
9
9
@@ -12,17 +12,7 @@ Startup.cs
12
12
``` cs
13
13
public void ConfigureServices (IServiceCollection services )
14
14
{
15
- services .AddDistributedServiceStackRedisCache (options =>
16
- {
17
- Configuration .GetSection (" redis" ).Bind (options );
18
- // Workaround for deadlock when resolving host name
19
- IPAddress ip ;
20
- if (! IPAddress .TryParse (options .Host , out ip ))
21
- {
22
- options .Host = Dns .GetHostAddressesAsync (options .Host )
23
- .Result .FirstOrDefault (a => a .AddressFamily == AddressFamily .InterNetwork ).ToString ();
24
- }
25
- });
15
+ services .AddDistributedServiceStackRedisCache (" redis" );
26
16
}
27
17
```
28
18
appsettings.json
You can’t perform that action at this time.
0 commit comments