I want to initialise Lettuce's RedisAsyncCommands with (K,V) different as <String,String> which is the default in case of Lettuce. How can I do that?
RedisURI redisUri = RedisURI.builder().withHost(configuration.getTelematicsRedis().getHost()).withPort(configuration.getTelematicsRedis().getPort()).build();RedisClient client = RedisClient.create(redisUri);RedisAsyncCommands<String, String> redisAsyncCommands = client.connect().async();
I went through the lettuce documentation and some other online links but it's still not clear to me.
Thanks in advance.