Elsticache Redis Cluster issue

We have a Redis Cluster (AWS Elasticache) in our account that we are trying to use with Lucee Cache and session cache. We can connect to it with the Ortus Redis extension, but when we try to use it we get the message below.

We only have a Trial license right now and are attempting to prove that we can use it before we dive in and make a purchase. Does the Trial license operate the same as a real license?

Caused by: redis.clients.jedis.exceptions.JedisMovedDataException: MOVED 7088 10.225.4.49:6379
at redis.clients.jedis.Protocol.processError(Protocol.java:115)
at redis.clients.jedis.Protocol.process(Protocol.java:161)
at redis.clients.jedis.Protocol.read(Protocol.java:215)
at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
at redis.clients.jedis.Jedis.hmset(Jedis.java:705)
at ortus.extension.cache.redis.RedisCache.put(RedisCache.java:333)

@lmajano Can you chime in? According to the interwebs, this happens when you use a redis cluster but you configure it for standalone.

The exception is because you are specifically using the JedisCluster protocol. This is completely different than traditional redis connection pools. It requires different connection pooling and connection management.

Our current Redis extension does not support RedisCluster approaches just yet. I have spec it and we have an estimation internally for the level of effort for supporting it.