Open
Description
Hi Everyone,
I've been trying out redis-om and I like the simplicity it offers. Thank you for taking the time to write it.
I have run into an issue though. When trying to run the following line of code
Customer.find(Customer.age == 38).all()
The above line of code works fine for a single redis instance. However, in cluster mode which redisearch should be using RSCoordinator under the hood I get redis moved errors.
redis.exceptions.ResponseError: MOVED 14592 10.9.9.6:7003
I have made sure to run: Migrator.run()
And I don't see what other issue I could have run into other than RSCoordinator not responding as its supposed in the redis-om backend. I come to this conclusion since save() & get() work just fine.