Bug fixes and added redis sentinel supportability changes.

pull/27/head
Ranjith Manickam 2018-12-04 01:39:28 +05:30
parent 2b09e15466
commit c41cfedd77
1 changed files with 3 additions and 4 deletions

View File

@ -22,11 +22,10 @@ public interface DataCacheConstants {
String REDIS_TIME_BETWEENEVICTION = "redis.time.betweenEviction:60000";
String REDIS_PASSWORD = "redis.password";
String REDIS_DATABASE = "redis.database";
String REDIS_TIMEOUT = "redis.timeout";
String REDIS_DATABASE = "redis.database:0";
String REDIS_TIMEOUT = "redis.timeout:2000";
String REDIS_SENTINEL_MASTER = "redis.sentinel.master";
String REDIS_DEFAULT_SENTINEL_MASTER = "mymaster";
String REDIS_SENTINEL_MASTER = "redis.sentinel.master:mymaster";
String REDIS_CONN_FAILED_RETRY_MSG = "Jedis connection failed, retrying...";