1
- using Microsoft . Extensions . Caching . StackExchangeRedis ;
1
+ using Apache . Extensions . Caching . Ignite ;
2
+ using Apache . Ignite ;
3
+ using Microsoft . Extensions . Caching . StackExchangeRedis ;
2
4
using RedisForDummies . Api . Settings ;
3
5
using RedisForDummies . Application . Providers . Counters ;
4
6
using RedisForDummies . Infrastructure . Providers . Counters ;
@@ -19,7 +21,8 @@ public static IServiceCollection AddServices(this IServiceCollection services, I
19
21
{
20
22
services
21
23
. AddApplicationServices ( )
22
- . AddRedis ( configuration ) ;
24
+ . AddApacheIgnite ( configuration )
25
+ /*.AddRedis(configuration)*/ ;
23
26
24
27
return services ;
25
28
}
@@ -35,6 +38,27 @@ private static IServiceCollection AddApplicationServices(this IServiceCollection
35
38
return services ;
36
39
}
37
40
41
+ /// <summary>
42
+ /// Добавить Apache Ignite.
43
+ /// </summary>
44
+ /// <param name="services">Коллекция сервисов.</param>
45
+ /// <param name="configuration">Конфигурация <see cref="IConfiguration"/>.</param>
46
+ private static IServiceCollection AddApacheIgnite ( this IServiceCollection services , IConfiguration configuration )
47
+ {
48
+ ApacheIgniteSettings apacheIgniteSettings ;
49
+
50
+ apacheIgniteSettings = configuration . GetRequiredSection ( nameof ( ApacheIgniteSettings ) )
51
+ . Get < ApacheIgniteSettings > ( ) ! ;
52
+
53
+ services . AddIgniteClientGroup ( new IgniteClientGroupConfiguration
54
+ {
55
+ ClientConfiguration = new IgniteClientConfiguration ( apacheIgniteSettings . Endpoints )
56
+ } )
57
+ . AddIgniteDistributedCache ( options => options . CacheKeyPrefix = "prefix" ) ;
58
+
59
+ return services ;
60
+ }
61
+
38
62
/// <summary>
39
63
/// Добавить Redis.
40
64
/// </summary>
0 commit comments