You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for writing this library, it's made made my life a bit easier. I came across some unusual behavior while I was using this library, notably find() does not work on any field with my data model below. It wasn't until I removed the index on the four timedelta and bool fields did find() start to work again. The get() method worked throughout.
find() does work after removing index on timedelta and bool fields. Removing either type doesn't not fix the issue, indices on both types need to be removed in order to find() to work again:
Hi,
Thanks for writing this library, it's made made my life a bit easier. I came across some unusual behavior while I was using this library, notably
find()
does not work on any field with my data model below. It wasn't until I removed the index on the fourtimedelta
andbool
fields didfind()
start to work again. Theget()
method worked throughout.find()
does not work with this data model:find()
does work after removing index ontimedelta
andbool
fields. Removing either type doesn't not fix the issue, indices on both types need to be removed in order tofind()
to work again:Version Information:
Python: 3.11.5
redis-om-python: 0.2.1
OS: macOS Sonoma 14.0 (Apple Silicon)
The text was updated successfully, but these errors were encountered: