I'm using spring data Redis, I'm adding functionality to the project to query Redis hash object with multiple fields. I just created secondary indices on those fields using @Indexed annotation from spring data Redis core.My question is, is there a way to configure my Redis hash object so that I use multi column indexes? Similar to spring data mongo @CompoundIndex.
I can see there's a org.springframework.data.redis.core.convert.CompositeIndexResolver.java, but Im not sure if there is a way to configure compound indexes from java using spring data Redis.