Question about FT.SEARCH indices #3391
-
|
Hello, I know this is a bit strange of a question, so please bear with me. Right now, to experiment with the KQIR, I'm using an index on 3 fields, This database will likely need to be shared anyway is it grows from 100k -> 1M unique values of But for the sake of learning about the internal architecture, I'm curious -- if I create an index per Thanks a lot for your time and help 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Sorry for the late reply. Could you provide some real data and queries? From the description alone, it's hard to fully understand what queries you're running and what your data looks like. As things stand, for the three fields There are two shortcomings in the current implementation:
You can use |
Beta Was this translation helpful? Give feedback.
means it will use the index of
d.it wil jump to the first key that
d == VAL, and scan over it until the last key thatd == VAL, and filter out via the condition(and e >= T, s < T).