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
Currently there is no secondary index to query keys($onKeys) or fields in values($onValues). In this preliminary version, it will do full DMap scan in a distributed manner. Later on we can implement a secondary index to query keys and values. The first version will work only for keys.
On one hand its nice that you came up with a flexible query dsl. On the other hand, I initially had a bug because I misspelled the case of "$onkey". So its easy to make a typo on the query. Also its a little verbose to get a key-only query iterator, but this works.
Thanks!
On one hand its nice that you came up with a flexible query dsl. On the other hand, I initially had a bug because I misspelled the case of "$onkey". So its easy to make a typo on the query. Also its a little verbose to get a key-only query iterator, but this works.
I really like this distributed query feature. It will be very useful when we build a secondary index on keys and fields of values. I'm going to focus on distributed queries in one of the next milestones.
I use MongoDB at my day job. I'm heavily inspired by its query language. It's fine, I think. I'm totally open to new ideas and improvements on the query language for the next releases.
The development work of this issue is about to be completed. I'll probably merge this branch into the master branch at Monday.
Thanks! I was just looking at this again today and hoped it would be merged so that I could use all of the new features together. Will definitely provide feedback if anything presents a problem.
We need to implement a preliminary version of
Query
function. It would be like the following:Currently there is no secondary index to query keys($onKeys) or fields in values($onValues). In this preliminary version, it will do full DMap scan in a distributed manner. Later on we can implement a secondary index to query keys and values. The first version will work only for keys.
See this thread for more info: #9 (comment)
The text was updated successfully, but these errors were encountered: