Migrate Lettuce(Redis) from biz.paluch.redis to io.lettuce

biz.paluch.redis.lettuce is outdated and unsupported. The current version contains a lot of vulnerable dependencies. image

    <dependency>
      <groupId>biz.paluch.redis</groupId>
      <artifactId>lettuce</artifactId>
      <version>${lettuce.version}</version>
    </dependency>

There is a newer version available:

<dependency>
    <groupId>io.lettuce</groupId>
    <artifactId>lettuce-core</artifactId>
    <version>6.3.2.RELEASE</version>
</dependency>

but it has changed namespaces, changes are not complex, only imports need to be changed from com.lambdaworks.redis to io.lettuce. But this will add overhead, anyone who is going to upgrade core-common, should be aware of that change.