Hi,
I see following properties to set redis url as part of Spring AI.
spring.ai.vectorstore.redis.uri | Server connection URI | redis://localhost:6379 spring.ai.vectorstore.redis.index | Index name | default-index spring.ai.vectorstore.redis.initialize-schema | Whether to initialize the required schema | false spring.ai.vectorstore.redis.prefix | Prefix | default:
I would like to use spring-data-redis properties to connect to redis sentinel instance to create RedisVectorStore
spring.data.redis.sentinel.master=mymaster spring.data.redis.sentinel.nodes=
Please let me know the steps on how to accomplish this.
Appreciate your help
Jay