Feature - nameMapper setting added. #3103

pull/3941/head
Nikita Koksharov 4 years ago
parent 03d3b063f2
commit 5951da9810

@ -59,15 +59,15 @@ public class BaseRegion implements TransactionalDataRegion, GeneralDataRegion {
this.metadata = metadata; this.metadata = metadata;
this.connectionManager = connectionManager; this.connectionManager = connectionManager;
String maxEntries = getProperty(properties, mapCache.getName2(), defaultKey, RedissonRegionFactory.MAX_ENTRIES_SUFFIX); String maxEntries = getProperty(properties, mapCache.getName(), defaultKey, RedissonRegionFactory.MAX_ENTRIES_SUFFIX);
if (maxEntries != null) { if (maxEntries != null) {
mapCache.setMaxSize(Integer.valueOf(maxEntries)); mapCache.setMaxSize(Integer.valueOf(maxEntries));
} }
String timeToLive = getProperty(properties, mapCache.getName2(), defaultKey, RedissonRegionFactory.TTL_SUFFIX); String timeToLive = getProperty(properties, mapCache.getName(), defaultKey, RedissonRegionFactory.TTL_SUFFIX);
if (timeToLive != null) { if (timeToLive != null) {
ttl = Integer.valueOf(timeToLive); ttl = Integer.valueOf(timeToLive);
} }
String maxIdleTime = getProperty(properties, mapCache.getName2(), defaultKey, RedissonRegionFactory.MAX_IDLE_SUFFIX); String maxIdleTime = getProperty(properties, mapCache.getName(), defaultKey, RedissonRegionFactory.MAX_IDLE_SUFFIX);
if (maxIdleTime != null) { if (maxIdleTime != null) {
maxIdle = Integer.valueOf(maxIdleTime); maxIdle = Integer.valueOf(maxIdleTime);
} }
@ -115,7 +115,7 @@ public class BaseRegion implements TransactionalDataRegion, GeneralDataRegion {
@Override @Override
public String getName() { public String getName() {
return mapCache.getName2(); return mapCache.getName();
} }
@Override @Override

@ -59,15 +59,15 @@ public class BaseRegion implements TransactionalDataRegion, GeneralDataRegion {
this.metadata = metadata; this.metadata = metadata;
this.connectionManager = connectionManager; this.connectionManager = connectionManager;
String maxEntries = getProperty(properties, mapCache.getName2(), defaultKey, RedissonRegionFactory.MAX_ENTRIES_SUFFIX); String maxEntries = getProperty(properties, mapCache.getName(), defaultKey, RedissonRegionFactory.MAX_ENTRIES_SUFFIX);
if (maxEntries != null) { if (maxEntries != null) {
mapCache.setMaxSize(Integer.valueOf(maxEntries)); mapCache.setMaxSize(Integer.valueOf(maxEntries));
} }
String timeToLive = getProperty(properties, mapCache.getName2(), defaultKey, RedissonRegionFactory.TTL_SUFFIX); String timeToLive = getProperty(properties, mapCache.getName(), defaultKey, RedissonRegionFactory.TTL_SUFFIX);
if (timeToLive != null) { if (timeToLive != null) {
ttl = Integer.valueOf(timeToLive); ttl = Integer.valueOf(timeToLive);
} }
String maxIdleTime = getProperty(properties, mapCache.getName2(), defaultKey, RedissonRegionFactory.MAX_IDLE_SUFFIX); String maxIdleTime = getProperty(properties, mapCache.getName(), defaultKey, RedissonRegionFactory.MAX_IDLE_SUFFIX);
if (maxIdleTime != null) { if (maxIdleTime != null) {
maxIdle = Integer.valueOf(maxIdleTime); maxIdle = Integer.valueOf(maxIdleTime);
} }
@ -115,7 +115,7 @@ public class BaseRegion implements TransactionalDataRegion, GeneralDataRegion {
@Override @Override
public String getName() { public String getName() {
return mapCache.getName2(); return mapCache.getName();
} }
@Override @Override

Loading…
Cancel
Save