-
Hi team, I'have a couchDb 3.0.0 with a database with 26 Millions of docs with n=3&q=2
I'have created an index like this :
and my query is :
I have also tried to add "_id":{"$gte": null} this query take more than 26 seconds If i explain it, it's seems to use the index :
I don't knows what's going wrong. |
Beta Was this translation helpful? Give feedback.
Answered by
natcohen
Sep 23, 2021
Replies: 1 comment
-
You should look at this #1549 and this #1852 Long story short, use Lucene for $or and $in queries, if you can... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nickva
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should look at this #1549 and this #1852
Long story short, use Lucene for $or and $in queries, if you can...