-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How To: execute complex searches #224
Comments
Hi Maybe could you look at the "filter" method using Predicate in EntityStream ? |
Hi, I'm applying your suggestion to my solution, but I'm curious how long can the chain go? Because when I try chaining more than 10 search terms it failed |
I have already use more than 10 chain without any problem (multiple OR for geoqueries tiles) Can you post a snippet maybe ? |
Thank you for your quick response. I have posted an issue here, and detailed everything, will this help? |
Hi there,
is there a way to execute some more complex search queries?
Examples:
FIND album WHERE
year
= 1990 ORyear
IS NULL (or undefined)[EDIT: this will not work at all (redis search limitation)]
FIND album WHERE (
year
= 1990 ORyear
= 2000) ANDfoo
= "barFIND album WHERE
year
= 1990 OR (year
= 2000 ANDfoo
= "bar)In the given examples I don't see if this is possible, or I'm not sure how RedisOM handles multiple AND & OR associations.
Or is there at least a way to print the generated search-query?
[EDIT: one can log the search query:
]
Thank you!
The text was updated successfully, but these errors were encountered: