SomeFire commented on a change in pull request #76: IGNITE-10275 Refactor of visa caching.
URL:
https://github.com/apache/ignite-teamcity-bot/pull/76#discussion_r235369350
##########
File path: ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/db/TcHelperDb.java
##########
@@ -93,6 +93,23 @@ public static void stop(Ignite ignite) {
Ignition.stop(ignite.name(), false);
}
+ /** */
+ @NotNull
+ public static <K, V> CacheConfiguration<K, V> getCacheV3Config(String name) {
+ CacheConfiguration<K, V> ccfg = new CacheConfiguration<>(name);
+
+ ccfg.setAffinity(new RendezvousAffinityFunction(false, 8));
+
+ return ccfg;
+ }
+
+ /** */
+ public static <K, V> CacheConfiguration<K, V> getCacheV3TxConfig(String name) {
+ return TcHelperDb.<K, V>getCacheV3Config(name).setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL);
+
+ }
+
Review comment:
```suggestion
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services