We are very excited to bring you another release for our Redis Lucee Extension. This release:
- Updates the underlying Redis java driver from v2.9.3 to v4.4.3
- Added SSL and username support to RedisClusterCache configuration
- Added username support to RedisCache ( non-cluster ) configuration
These enancements have been made to ensure full compatibility with both standalone Redis implementations, as well as AWS Elasticache configurations and authentication mechanisms.
Example CFConfig for both single-node and cluster caches:
"caches" : {
"redisnode" : {
"class":"ortus.extension.cache.redis.RedisCache",
"custom":{
"cacheKeyCaseSensitivity":"false",
"username" : "myNodeUser",
"password":"my53cur3Pa55!",
"timeout":"2000",
"useSSL":"true",
"host":"redis.singlenode",
"keyprefix":"lucee-redis-node",
"port":"6379",
"database" : "0",
"idleConnections":"5",
"timeout" : 20000,
"readTimeout" : 20000,
"maxAttempts" : 5,
"maxConnections" : 50
},
"readOnly":"false",
"storage":"true"
}
"rediscluster":{
"class":"ortus.extension.cache.redis.RedisClusterCache",
"custom":{
"hosts":"redis1.mycluster,redis2.mycluster,redis3.mycluster",
"keyprefix":"lucee-cluster",
"port":"6379",
"useSSL" : true,
"username" : "myUser",
"password" : "my53cur3Pa55!",
"timeout" : 20000,
"readTimeout" : 20000,
"maxAttempts" : 5,
"maxConnections" : 50
},
"readOnly":"false",
"storage":"true"
}
}
Read our release history and changelog here: What's New With 3.0.0!
Read the full documentation here: Ortus Redis Cache Extension Documentation
Resources
Please visit our Extension page for all the necessary resources.
Add Your Comment